provider-keymgmt.pod 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478
  1. =pod
  2. =head1 NAME
  3. provider-keymgmt - The KEYMGMT library E<lt>-E<gt> provider functions
  4. =head1 SYNOPSIS
  5. #include <openssl/core_dispatch.h>
  6. /*
  7. * None of these are actual functions, but are displayed like this for
  8. * the function signatures for functions that are offered as function
  9. * pointers in OSSL_DISPATCH arrays.
  10. */
  11. /* Key object (keydata) creation and destruction */
  12. void *OSSL_FUNC_keymgmt_new(void *provctx);
  13. void OSSL_FUNC_keymgmt_free(void *keydata);
  14. /* Generation, a more complex constructor */
  15. void *OSSL_FUNC_keymgmt_gen_init(void *provctx, int selection,
  16. const OSSL_PARAM params[]);
  17. int OSSL_FUNC_keymgmt_gen_set_template(void *genctx, void *template);
  18. int OSSL_FUNC_keymgmt_gen_set_params(void *genctx, const OSSL_PARAM params[]);
  19. const OSSL_PARAM *OSSL_FUNC_keymgmt_gen_settable_params(void *genctx,
  20. void *provctx);
  21. void *OSSL_FUNC_keymgmt_gen(void *genctx, OSSL_CALLBACK *cb, void *cbarg);
  22. void OSSL_FUNC_keymgmt_gen_cleanup(void *genctx);
  23. /* Key loading by object reference, also a constructor */
  24. void *OSSL_FUNC_keymgmt_load(const void *reference, size_t *reference_sz);
  25. /* Key object information */
  26. int OSSL_FUNC_keymgmt_get_params(void *keydata, OSSL_PARAM params[]);
  27. const OSSL_PARAM *OSSL_FUNC_keymgmt_gettable_params(void *provctx);
  28. int OSSL_FUNC_keymgmt_set_params(void *keydata, const OSSL_PARAM params[]);
  29. const OSSL_PARAM *OSSL_FUNC_keymgmt_settable_params(void *provctx);
  30. /* Key object content checks */
  31. int OSSL_FUNC_keymgmt_has(const void *keydata, int selection);
  32. int OSSL_FUNC_keymgmt_match(const void *keydata1, const void *keydata2,
  33. int selection);
  34. /* Discovery of supported operations */
  35. const char *OSSL_FUNC_keymgmt_query_operation_name(int operation_id);
  36. /* Key object import and export functions */
  37. int OSSL_FUNC_keymgmt_import(void *keydata, int selection, const OSSL_PARAM params[]);
  38. const OSSL_PARAM *OSSL_FUNC_keymgmt_import_types(int selection);
  39. const OSSL_PARAM *OSSL_FUNC_keymgmt_import_types_ex(void *provctx, int selection);
  40. int OSSL_FUNC_keymgmt_export(void *keydata, int selection,
  41. OSSL_CALLBACK *param_cb, void *cbarg);
  42. const OSSL_PARAM *OSSL_FUNC_keymgmt_export_types(int selection);
  43. const OSSL_PARAM *OSSL_FUNC_keymgmt_export_types_ex(void *provctx, int selection);
  44. /* Key object duplication, a constructor */
  45. void *OSSL_FUNC_keymgmt_dup(const void *keydata_from, int selection);
  46. /* Key object validation */
  47. int OSSL_FUNC_keymgmt_validate(const void *keydata, int selection, int checktype);
  48. =head1 DESCRIPTION
  49. The KEYMGMT operation doesn't have much public visibility in OpenSSL
  50. libraries, it's rather an internal operation that's designed to work
  51. in tandem with operations that use private/public key pairs.
  52. Because the KEYMGMT operation shares knowledge with the operations it
  53. works with in tandem, they must belong to the same provider.
  54. The OpenSSL libraries will ensure that they do.
  55. The primary responsibility of the KEYMGMT operation is to hold the
  56. provider side key data for the OpenSSL library EVP_PKEY structure.
  57. All "functions" mentioned here are passed as function pointers between
  58. F<libcrypto> and the provider in L<OSSL_DISPATCH(3)> arrays via
  59. L<OSSL_ALGORITHM(3)> arrays that are returned by the provider's
  60. provider_query_operation() function
  61. (see L<provider-base(7)/Provider Functions>).
  62. All these "functions" have a corresponding function type definition
  63. named B<OSSL_FUNC_{name}_fn>, and a helper function to retrieve the
  64. function pointer from a L<OSSL_DISPATCH(3)> element named
  65. B<OSSL_FUNC_{name}>.
  66. For example, the "function" OSSL_FUNC_keymgmt_new() has these:
  67. typedef void *(OSSL_FUNC_keymgmt_new_fn)(void *provctx);
  68. static ossl_inline OSSL_FUNC_keymgmt_new_fn
  69. OSSL_FUNC_keymgmt_new(const OSSL_DISPATCH *opf);
  70. L<OSSL_DISPATCH(3)> arrays are indexed by numbers that are provided as
  71. macros in L<openssl-core_dispatch.h(7)>, as follows:
  72. OSSL_FUNC_keymgmt_new OSSL_FUNC_KEYMGMT_NEW
  73. OSSL_FUNC_keymgmt_free OSSL_FUNC_KEYMGMT_FREE
  74. OSSL_FUNC_keymgmt_gen_init OSSL_FUNC_KEYMGMT_GEN_INIT
  75. OSSL_FUNC_keymgmt_gen_set_template OSSL_FUNC_KEYMGMT_GEN_SET_TEMPLATE
  76. OSSL_FUNC_keymgmt_gen_set_params OSSL_FUNC_KEYMGMT_GEN_SET_PARAMS
  77. OSSL_FUNC_keymgmt_gen_settable_params OSSL_FUNC_KEYMGMT_GEN_SETTABLE_PARAMS
  78. OSSL_FUNC_keymgmt_gen OSSL_FUNC_KEYMGMT_GEN
  79. OSSL_FUNC_keymgmt_gen_cleanup OSSL_FUNC_KEYMGMT_GEN_CLEANUP
  80. OSSL_FUNC_keymgmt_load OSSL_FUNC_KEYMGMT_LOAD
  81. OSSL_FUNC_keymgmt_get_params OSSL_FUNC_KEYMGMT_GET_PARAMS
  82. OSSL_FUNC_keymgmt_gettable_params OSSL_FUNC_KEYMGMT_GETTABLE_PARAMS
  83. OSSL_FUNC_keymgmt_set_params OSSL_FUNC_KEYMGMT_SET_PARAMS
  84. OSSL_FUNC_keymgmt_settable_params OSSL_FUNC_KEYMGMT_SETTABLE_PARAMS
  85. OSSL_FUNC_keymgmt_query_operation_name OSSL_FUNC_KEYMGMT_QUERY_OPERATION_NAME
  86. OSSL_FUNC_keymgmt_has OSSL_FUNC_KEYMGMT_HAS
  87. OSSL_FUNC_keymgmt_validate OSSL_FUNC_KEYMGMT_VALIDATE
  88. OSSL_FUNC_keymgmt_match OSSL_FUNC_KEYMGMT_MATCH
  89. OSSL_FUNC_keymgmt_import OSSL_FUNC_KEYMGMT_IMPORT
  90. OSSL_FUNC_keymgmt_import_types OSSL_FUNC_KEYMGMT_IMPORT_TYPES
  91. OSSL_FUNC_keymgmt_import_types_ex OSSL_FUNC_KEYMGMT_IMPORT_TYPES_EX
  92. OSSL_FUNC_keymgmt_export OSSL_FUNC_KEYMGMT_EXPORT
  93. OSSL_FUNC_keymgmt_export_types OSSL_FUNC_KEYMGMT_EXPORT_TYPES
  94. OSSL_FUNC_keymgmt_export_types_ex OSSL_FUNC_KEYMGMT_EXPORT_TYPES_EX
  95. OSSL_FUNC_keymgmt_dup OSSL_FUNC_KEYMGMT_DUP
  96. =head2 Key Objects
  97. A key object is a collection of data for an asymmetric key, and is
  98. represented as I<keydata> in this manual.
  99. The exact contents of a key object are defined by the provider, and it
  100. is assumed that different operations in one and the same provider use
  101. the exact same structure to represent this collection of data, so that
  102. for example, a key object that has been created using the KEYMGMT
  103. interface that we document here can be passed as is to other provider
  104. operations, such as OP_signature_sign_init() (see
  105. L<provider-signature(7)>).
  106. With some of the KEYMGMT functions, it's possible to select a specific
  107. subset of data to handle, governed by the bits in a I<selection>
  108. indicator. The bits are:
  109. =over 4
  110. =item B<OSSL_KEYMGMT_SELECT_PRIVATE_KEY>
  111. Indicating that the private key data in a key object should be
  112. considered.
  113. =item B<OSSL_KEYMGMT_SELECT_PUBLIC_KEY>
  114. Indicating that the public key data in a key object should be
  115. considered.
  116. =item B<OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS>
  117. Indicating that the domain parameters in a key object should be
  118. considered.
  119. =item B<OSSL_KEYMGMT_SELECT_OTHER_PARAMETERS>
  120. Indicating that other parameters in a key object should be
  121. considered.
  122. Other parameters are key parameters that don't fit any other
  123. classification. In other words, this particular selector bit works as
  124. a last resort bit bucket selector.
  125. =back
  126. Some selector bits have also been combined for easier use:
  127. =over 4
  128. =item B<OSSL_KEYMGMT_SELECT_ALL_PARAMETERS>
  129. Indicating that all key object parameters should be considered,
  130. regardless of their more granular classification.
  131. =for comment This should used by EVP functions such as
  132. EVP_PKEY_copy_parameters() and EVP_PKEY_parameters_eq()
  133. This is a combination of B<OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS> and
  134. B<OSSL_KEYMGMT_SELECT_OTHER_PARAMETERS>.
  135. =for comment If more parameter categories are added, they should be
  136. mentioned here too.
  137. =item B<OSSL_KEYMGMT_SELECT_KEYPAIR>
  138. Indicating that both the whole key pair in a key object should be
  139. considered, i.e. the combination of public and private key.
  140. This is a combination of B<OSSL_KEYMGMT_SELECT_PRIVATE_KEY> and
  141. B<OSSL_KEYMGMT_SELECT_PUBLIC_KEY>.
  142. =item B<OSSL_KEYMGMT_SELECT_ALL>
  143. Indicating that everything in a key object should be considered.
  144. =back
  145. The exact interpretation of those bits or how they combine is left to
  146. each function where you can specify a selector.
  147. It's left to the provider implementation to decide what is reasonable
  148. to do with regards to received selector bits and how to do it.
  149. Among others, an implementation of OSSL_FUNC_keymgmt_match() might opt
  150. to not compare the private half if it has compared the public half,
  151. since a match of one half implies a match of the other half.
  152. =head2 Constructing and Destructing Functions
  153. OSSL_FUNC_keymgmt_new() should create a provider side key object. The
  154. provider context I<provctx> is passed and may be incorporated in the
  155. key object, but that is not mandatory.
  156. OSSL_FUNC_keymgmt_free() should free the passed I<keydata>.
  157. OSSL_FUNC_keymgmt_gen_init(), OSSL_FUNC_keymgmt_gen_set_template(),
  158. OSSL_FUNC_keymgmt_gen_set_params(), OSSL_FUNC_keymgmt_gen_settable_params(),
  159. OSSL_FUNC_keymgmt_gen() and OSSL_FUNC_keymgmt_gen_cleanup() work together as a
  160. more elaborate context based key object constructor.
  161. OSSL_FUNC_keymgmt_gen_init() should create the key object generation context
  162. and initialize it with I<selections>, which will determine what kind
  163. of contents the key object to be generated should get.
  164. The I<params>, if not NULL, should be set on the context in a manner similar to
  165. using OSSL_FUNC_keymgmt_set_params().
  166. OSSL_FUNC_keymgmt_gen_set_template() should add I<template> to the context
  167. I<genctx>. The I<template> is assumed to be a key object constructed
  168. with the same KEYMGMT, and from which content that the implementation
  169. chooses can be used as a template for the key object to be generated.
  170. Typically, the generation of a DSA or DH key would get the domain
  171. parameters from this I<template>.
  172. OSSL_FUNC_keymgmt_gen_set_params() should set additional parameters from
  173. I<params> in the key object generation context I<genctx>.
  174. OSSL_FUNC_keymgmt_gen_settable_params() should return a constant array of
  175. descriptor L<OSSL_PARAM(3)>, for parameters that OSSL_FUNC_keymgmt_gen_set_params()
  176. can handle.
  177. OSSL_FUNC_keymgmt_gen() should perform the key object generation itself, and
  178. return the result. The callback I<cb> should be called at regular
  179. intervals with indications on how the key object generation
  180. progresses.
  181. OSSL_FUNC_keymgmt_gen_cleanup() should clean up and free the key object
  182. generation context I<genctx>
  183. OSSL_FUNC_keymgmt_load() creates a provider side key object based on a
  184. I<reference> object with a size of I<reference_sz> bytes, that only the
  185. provider knows how to interpret, but that may come from other operations.
  186. Outside the provider, this reference is simply an array of bytes.
  187. At least one of OSSL_FUNC_keymgmt_new(), OSSL_FUNC_keymgmt_gen() and
  188. OSSL_FUNC_keymgmt_load() are mandatory, as well as OSSL_FUNC_keymgmt_free() and
  189. OSSL_FUNC_keymgmt_has(). Additionally, if OSSL_FUNC_keymgmt_gen() is present,
  190. OSSL_FUNC_keymgmt_gen_init() and OSSL_FUNC_keymgmt_gen_cleanup() must be
  191. present as well.
  192. =head2 Key Object Information Functions
  193. OSSL_FUNC_keymgmt_get_params() should extract information data associated
  194. with the given I<keydata>, see L</Common Information Parameters>.
  195. OSSL_FUNC_keymgmt_gettable_params() should return a constant array of
  196. descriptor L<OSSL_PARAM(3)>, for parameters that OSSL_FUNC_keymgmt_get_params()
  197. can handle.
  198. If OSSL_FUNC_keymgmt_gettable_params() is present, OSSL_FUNC_keymgmt_get_params()
  199. must also be present, and vice versa.
  200. OSSL_FUNC_keymgmt_set_params() should update information data associated
  201. with the given I<keydata>, see L</Common Information Parameters>.
  202. OSSL_FUNC_keymgmt_settable_params() should return a constant array of
  203. descriptor L<OSSL_PARAM(3)>, for parameters that OSSL_FUNC_keymgmt_set_params()
  204. can handle.
  205. If OSSL_FUNC_keymgmt_settable_params() is present, OSSL_FUNC_keymgmt_set_params()
  206. must also be present, and vice versa.
  207. =head2 Key Object Checking Functions
  208. OSSL_FUNC_keymgmt_query_operation_name() should return the name of the
  209. supported algorithm for the operation I<operation_id>. This is
  210. similar to provider_query_operation() (see L<provider-base(7)>),
  211. but only works as an advisory. If this function is not present, or
  212. returns NULL, the caller is free to assume that there's an algorithm
  213. from the same provider, of the same name as the one used to fetch the
  214. keymgmt and try to use that.
  215. OSSL_FUNC_keymgmt_has() should check whether the given I<keydata> contains the subsets
  216. of data indicated by the I<selector>. A combination of several
  217. selector bits must consider all those subsets, not just one. An
  218. implementation is, however, free to consider an empty subset of data
  219. to still be a valid subset. For algorithms where some selection is
  220. not meaningful such as B<OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS> for
  221. RSA keys the function should just return 1 as the selected subset
  222. is not really missing in the key.
  223. OSSL_FUNC_keymgmt_validate() should check if the I<keydata> contains valid
  224. data subsets indicated by I<selection>. Some combined selections of
  225. data subsets may cause validation of the combined data.
  226. For example, the combination of B<OSSL_KEYMGMT_SELECT_PRIVATE_KEY> and
  227. B<OSSL_KEYMGMT_SELECT_PUBLIC_KEY> (or B<OSSL_KEYMGMT_SELECT_KEYPAIR>
  228. for short) is expected to check that the pairwise consistency of
  229. I<keydata> is valid. The I<checktype> parameter controls what type of check is
  230. performed on the subset of data. Two types of check are defined:
  231. B<OSSL_KEYMGMT_VALIDATE_FULL_CHECK> and B<OSSL_KEYMGMT_VALIDATE_QUICK_CHECK>.
  232. The interpretation of how much checking is performed in a full check versus a
  233. quick check is key type specific. Some providers may have no distinction
  234. between a full check and a quick check. For algorithms where some selection is
  235. not meaningful such as B<OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS> for
  236. RSA keys the function should just return 1 as there is nothing to validate for
  237. that selection.
  238. OSSL_FUNC_keymgmt_match() should check if the data subset indicated by
  239. I<selection> in I<keydata1> and I<keydata2> match. It is assumed that
  240. the caller has ensured that I<keydata1> and I<keydata2> are both owned
  241. by the implementation of this function.
  242. =head2 Key Object Import, Export and Duplication Functions
  243. OSSL_FUNC_keymgmt_import() should import data indicated by I<selection> into
  244. I<keydata> with values taken from the L<OSSL_PARAM(3)> array I<params>.
  245. OSSL_FUNC_keymgmt_export() should extract values indicated by I<selection>
  246. from I<keydata>, create an L<OSSL_PARAM(3)> array with them and call
  247. I<param_cb> with that array as well as the given I<cbarg>.
  248. OSSL_FUNC_keymgmt_import_types() and OSSL_FUNC_keymgmt_import_types_ex()
  249. should return a constant array of descriptor
  250. L<OSSL_PARAM(3)> for data indicated by I<selection>, for parameters that
  251. OSSL_FUNC_keymgmt_import() can handle.
  252. Either OSSL_FUNC_keymgmt_import_types() or OSSL_FUNC_keymgmt_import_types_ex(),
  253. must be implemented, if OSSL_FUNC_keymgmt_import_types_ex() is implemented, then
  254. it is preferred over OSSL_FUNC_keymgmt_import_types().
  255. Providers that are supposed to be backward compatible with OpenSSL 3.0 or 3.1
  256. must continue to implement OSSL_FUNC_keymgmt_import_types().
  257. OSSL_FUNC_keymgmt_export_types() and OSSL_FUNC_keymgmt_export_types_ex()
  258. should return a constant array of descriptor
  259. L<OSSL_PARAM(3)> for data indicated by I<selection>, that the
  260. OSSL_FUNC_keymgmt_export() callback can expect to receive.
  261. Either OSSL_FUNC_keymgmt_export_types() or OSSL_FUNC_keymgmt_export_types_ex(),
  262. must be implemented, if OSSL_FUNC_keymgmt_export_types_ex() is implemented, then
  263. it is preferred over OSSL_FUNC_keymgmt_export_types().
  264. Providers that are supposed to be backward compatible with OpenSSL 3.0 or 3.1
  265. must continue to implement OSSL_FUNC_keymgmt_export_types().
  266. OSSL_FUNC_keymgmt_dup() should duplicate data subsets indicated by
  267. I<selection> or the whole key data I<keydata_from> and create a new
  268. provider side key object with the data.
  269. =head2 Common Information Parameters
  270. See L<OSSL_PARAM(3)> for further details on the parameters structure.
  271. Common information parameters currently recognised by all built-in
  272. keymgmt algorithms are as follows:
  273. =over 4
  274. =item "bits" (B<OSSL_PKEY_PARAM_BITS>) <integer>
  275. The value should be the cryptographic length of the cryptosystem to
  276. which the key belongs, in bits. The definition of cryptographic
  277. length is specific to the key cryptosystem.
  278. =item "max-size" (B<OSSL_PKEY_PARAM_MAX_SIZE>) <integer>
  279. The value should be the maximum size that a caller should allocate to
  280. safely store a signature (called I<sig> in L<provider-signature(7)>),
  281. the result of asymmetric encryption / decryption (I<out> in
  282. L<provider-asym_cipher(7)>, a derived secret (I<secret> in
  283. L<provider-keyexch(7)>, and similar data).
  284. Providers need to implement this parameter
  285. in order to properly support various use cases such as CMS signing.
  286. Because an EVP_KEYMGMT method is always tightly bound to another method
  287. (signature, asymmetric cipher, key exchange, ...) and must be of the
  288. same provider, this number only needs to be synchronised with the
  289. dimensions handled in the rest of the same provider.
  290. =item "security-bits" (B<OSSL_PKEY_PARAM_SECURITY_BITS>) <integer>
  291. The value should be the number of security bits of the given key.
  292. Bits of security is defined in SP800-57.
  293. =item "mandatory-digest" (B<OSSL_PKEY_PARAM_MANDATORY_DIGEST>) <UTF8 string>
  294. If there is a mandatory digest for performing a signature operation with
  295. keys from this keymgmt, this parameter should get its name as value.
  296. When EVP_PKEY_get_default_digest_name() queries this parameter and it's
  297. filled in by the implementation, its return value will be 2.
  298. If the keymgmt implementation fills in the value C<""> or C<"UNDEF">,
  299. L<EVP_PKEY_get_default_digest_name(3)> will place the string C<"UNDEF"> into
  300. its argument I<mdname>. This signifies that no digest should be specified
  301. with the corresponding signature operation.
  302. =item "default-digest" (B<OSSL_PKEY_PARAM_DEFAULT_DIGEST>) <UTF8 string>
  303. If there is a default digest for performing a signature operation with
  304. keys from this keymgmt, this parameter should get its name as value.
  305. When L<EVP_PKEY_get_default_digest_name(3)> queries this parameter and it's
  306. filled in by the implementation, its return value will be 1. Note that if
  307. B<OSSL_PKEY_PARAM_MANDATORY_DIGEST> is responded to as well,
  308. L<EVP_PKEY_get_default_digest_name(3)> ignores the response to this
  309. parameter.
  310. If the keymgmt implementation fills in the value C<""> or C<"UNDEF">,
  311. L<EVP_PKEY_get_default_digest_name(3)> will place the string C<"UNDEF"> into
  312. its argument I<mdname>. This signifies that no digest has to be specified
  313. with the corresponding signature operation, but may be specified as an
  314. option.
  315. =back
  316. =head1 RETURN VALUES
  317. OSSL_FUNC_keymgmt_new() and OSSL_FUNC_keymgmt_dup() should return a valid
  318. reference to the newly created provider side key object, or NULL on failure.
  319. OSSL_FUNC_keymgmt_import(), OSSL_FUNC_keymgmt_export(), OSSL_FUNC_keymgmt_get_params() and
  320. OSSL_FUNC_keymgmt_set_params() should return 1 for success or 0 on error.
  321. OSSL_FUNC_keymgmt_validate() should return 1 on successful validation, or 0 on
  322. failure.
  323. OSSL_FUNC_keymgmt_has() should return 1 if all the selected data subsets are contained
  324. in the given I<keydata> or 0 otherwise.
  325. OSSL_FUNC_keymgmt_query_operation_name() should return a pointer to a string matching
  326. the requested operation, or NULL if the same name used to fetch the keymgmt
  327. applies.
  328. OSSL_FUNC_keymgmt_gettable_params() and OSSL_FUNC_keymgmt_settable_params()
  329. OSSL_FUNC_keymgmt_import_types(), OSSL_FUNC_keymgmt_import_types_ex(),
  330. OSSL_FUNC_keymgmt_export_types(), OSSL_FUNC_keymgmt_export_types_ex()
  331. should
  332. always return a constant L<OSSL_PARAM(3)> array.
  333. =head1 SEE ALSO
  334. L<EVP_PKEY_get_size(3)>,
  335. L<EVP_PKEY_get_bits(3)>,
  336. L<EVP_PKEY_get_security_bits(3)>,
  337. L<provider(7)>,
  338. L<EVP_PKEY-X25519(7)>, L<EVP_PKEY-X448(7)>, L<EVP_PKEY-ED25519(7)>,
  339. L<EVP_PKEY-ED448(7)>, L<EVP_PKEY-EC(7)>, L<EVP_PKEY-RSA(7)>,
  340. L<EVP_PKEY-DSA(7)>, L<EVP_PKEY-DH(7)>
  341. =head1 HISTORY
  342. The KEYMGMT interface was introduced in OpenSSL 3.0.
  343. Functions OSSL_FUNC_keymgmt_import_types_ex(), and OSSL_FUNC_keymgmt_export_types_ex()
  344. were added with OpenSSL 3.2.
  345. =head1 COPYRIGHT
  346. Copyright 2019-2024 The OpenSSL Project Authors. All Rights Reserved.
  347. Licensed under the Apache License 2.0 (the "License"). You may not use
  348. this file except in compliance with the License. You can obtain a copy
  349. in the file LICENSE in the source distribution or at
  350. L<https://www.openssl.org/source/license.html>.
  351. =cut