2
0

openssl-core.h.pod 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. =pod
  2. =head1 NAME
  3. openssl/core.h - OpenSSL Core types
  4. =head1 SYNOPSIS
  5. #include <openssl/core.h>
  6. =head1 DESCRIPTION
  7. The F<< <openssl/core.h> >> header defines a number of public types that
  8. are used to communicate between the OpenSSL libraries and
  9. implementation providers.
  10. These types are designed to minimise the need for intimate knowledge
  11. of internal structures between the OpenSSL libraries and the providers.
  12. The types are:
  13. =over 4
  14. =item L<OSSL_DISPATCH(3)>
  15. =item L<OSSL_ITEM(3)>
  16. =item L<OSSL_ALGORITHM(3)>
  17. =item L<OSSL_PARAM(3)>
  18. =item L<OSSL_CALLBACK(3)>
  19. =item L<OSSL_PASSPHRASE_CALLBACK(3)>
  20. =back
  21. =head1 SEE ALSO
  22. L<openssl-core_dispatch.h(7)>
  23. =head1 HISTORY
  24. The types described here were added in OpenSSL 3.0.
  25. =head1 COPYRIGHT
  26. Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.
  27. Licensed under the Apache License 2.0 (the "License"). You may not use
  28. this file except in compliance with the License. You can obtain a copy
  29. in the file LICENSE in the source distribution or at
  30. L<https://www.openssl.org/source/license.html>.
  31. =cut