provider-kdf.pod 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  1. =pod
  2. =head1 NAME
  3. provider-kdf - The KDF library E<lt>-E<gt> provider functions
  4. =head1 SYNOPSIS
  5. =for openssl multiple includes
  6. #include <openssl/core_dispatch.h>
  7. #include <openssl/core_names.h>
  8. /*
  9. * None of these are actual functions, but are displayed like this for
  10. * the function signatures for functions that are offered as function
  11. * pointers in OSSL_DISPATCH arrays.
  12. */
  13. /* Context management */
  14. void *OSSL_FUNC_kdf_newctx(void *provctx);
  15. void OSSL_FUNC_kdf_freectx(void *kctx);
  16. void *OSSL_FUNC_kdf_dupctx(void *src);
  17. /* Encryption/decryption */
  18. int OSSL_FUNC_kdf_reset(void *kctx);
  19. int OSSL_FUNC_kdf_derive(void *kctx, unsigned char *key, size_t keylen,
  20. const OSSL_PARAM params[]);
  21. /* KDF parameter descriptors */
  22. const OSSL_PARAM *OSSL_FUNC_kdf_gettable_params(void *provctx);
  23. const OSSL_PARAM *OSSL_FUNC_kdf_gettable_ctx_params(void *kcxt, void *provctx);
  24. const OSSL_PARAM *OSSL_FUNC_kdf_settable_ctx_params(void *kcxt, void *provctx);
  25. /* KDF parameters */
  26. int OSSL_FUNC_kdf_get_params(OSSL_PARAM params[]);
  27. int OSSL_FUNC_kdf_get_ctx_params(void *kctx, OSSL_PARAM params[]);
  28. int OSSL_FUNC_kdf_set_ctx_params(void *kctx, const OSSL_PARAM params[]);
  29. =head1 DESCRIPTION
  30. This documentation is primarily aimed at provider authors. See L<provider(7)>
  31. for further information.
  32. The KDF operation enables providers to implement KDF algorithms and make
  33. them available to applications via the API functions L<EVP_KDF_CTX_reset(3)>,
  34. and L<EVP_KDF_derive(3)>.
  35. All "functions" mentioned here are passed as function pointers between
  36. F<libcrypto> and the provider in B<OSSL_DISPATCH> arrays via
  37. B<OSSL_ALGORITHM> arrays that are returned by the provider's
  38. provider_query_operation() function
  39. (see L<provider-base(7)/Provider Functions>).
  40. All these "functions" have a corresponding function type definition
  41. named B<OSSL_FUNC_{name}_fn>, and a helper function to retrieve the
  42. function pointer from an B<OSSL_DISPATCH> element named
  43. B<OSSL_FUNC_{name}>.
  44. For example, the "function" OSSL_FUNC_kdf_newctx() has these:
  45. typedef void *(OSSL_OSSL_FUNC_kdf_newctx_fn)(void *provctx);
  46. static ossl_inline OSSL_OSSL_FUNC_kdf_newctx_fn
  47. OSSL_FUNC_kdf_newctx(const OSSL_DISPATCH *opf);
  48. B<OSSL_DISPATCH> array entries are identified by numbers that are provided as
  49. macros in L<openssl-core_dispatch.h(7)>, as follows:
  50. OSSL_FUNC_kdf_newctx OSSL_FUNC_KDF_NEWCTX
  51. OSSL_FUNC_kdf_freectx OSSL_FUNC_KDF_FREECTX
  52. OSSL_FUNC_kdf_dupctx OSSL_FUNC_KDF_DUPCTX
  53. OSSL_FUNC_kdf_reset OSSL_FUNC_KDF_RESET
  54. OSSL_FUNC_kdf_derive OSSL_FUNC_KDF_DERIVE
  55. OSSL_FUNC_kdf_get_params OSSL_FUNC_KDF_GET_PARAMS
  56. OSSL_FUNC_kdf_get_ctx_params OSSL_FUNC_KDF_GET_CTX_PARAMS
  57. OSSL_FUNC_kdf_set_ctx_params OSSL_FUNC_KDF_SET_CTX_PARAMS
  58. OSSL_FUNC_kdf_gettable_params OSSL_FUNC_KDF_GETTABLE_PARAMS
  59. OSSL_FUNC_kdf_gettable_ctx_params OSSL_FUNC_KDF_GETTABLE_CTX_PARAMS
  60. OSSL_FUNC_kdf_settable_ctx_params OSSL_FUNC_KDF_SETTABLE_CTX_PARAMS
  61. A KDF algorithm implementation may not implement all of these functions.
  62. In order to be a consistent set of functions, at least the following functions
  63. must be implemented: OSSL_FUNC_kdf_newctx(), OSSL_FUNC_kdf_freectx(),
  64. OSSL_FUNC_kdf_set_ctx_params(), OSSL_FUNC_kdf_derive().
  65. All other functions are optional.
  66. =head2 Context Management Functions
  67. OSSL_FUNC_kdf_newctx() should create and return a pointer to a provider side
  68. structure for holding context information during a KDF operation.
  69. A pointer to this context will be passed back in a number of the other KDF
  70. operation function calls.
  71. The parameter I<provctx> is the provider context generated during provider
  72. initialisation (see L<provider(7)>).
  73. OSSL_FUNC_kdf_freectx() is passed a pointer to the provider side KDF context in
  74. the I<kctx> parameter.
  75. If it receives NULL as I<kctx> value, it should not do anything other than
  76. return.
  77. This function should free any resources associated with that context.
  78. OSSL_FUNC_kdf_dupctx() should duplicate the provider side KDF context in the
  79. I<kctx> parameter and return the duplicate copy.
  80. =head2 Encryption/Decryption Functions
  81. OSSL_FUNC_kdf_reset() initialises a KDF operation given a provider
  82. side KDF context in the I<kctx> parameter.
  83. OSSL_FUNC_kdf_derive() performs the KDF operation after processing the
  84. I<params> as per OSSL_FUNC_kdf_set_ctx_params().
  85. The I<kctx> parameter contains a pointer to the provider side context.
  86. The resulting key of the desired I<keylen> should be written to I<key>.
  87. If the algorithm does not support the requested I<keylen> the function must
  88. return error.
  89. =head2 KDF Parameters
  90. See L<OSSL_PARAM(3)> for further details on the parameters structure used by
  91. these functions.
  92. OSSL_FUNC_kdf_get_params() gets details of parameter values associated with the
  93. provider algorithm and stores them in I<params>.
  94. OSSL_FUNC_kdf_set_ctx_params() sets KDF parameters associated with the given
  95. provider side KDF context I<kctx> to I<params>.
  96. Any parameter settings are additional to any that were previously set.
  97. Passing NULL for I<params> should return true.
  98. OSSL_FUNC_kdf_get_ctx_params() retrieves gettable parameter values associated
  99. with the given provider side KDF context I<kctx> and stores them in I<params>.
  100. Passing NULL for I<params> should return true.
  101. OSSL_FUNC_kdf_gettable_params(), OSSL_FUNC_kdf_gettable_ctx_params(),
  102. and OSSL_FUNC_kdf_settable_ctx_params() all return constant B<OSSL_PARAM>
  103. arrays as descriptors of the parameters that OSSL_FUNC_kdf_get_params(),
  104. OSSL_FUNC_kdf_get_ctx_params(), and OSSL_FUNC_kdf_set_ctx_params()
  105. can handle, respectively. OSSL_FUNC_kdf_gettable_ctx_params() and
  106. OSSL_FUNC_kdf_settable_ctx_params() will return the parameters associated
  107. with the provider side context I<kctx> in its current state if it is
  108. not NULL. Otherwise, they return the parameters associated with the
  109. provider side algorithm I<provctx>.
  110. Parameters currently recognised by built-in KDFs are as follows. Not all
  111. parameters are relevant to, or are understood by all KDFs:
  112. =over 4
  113. =item "size" (B<OSSL_KDF_PARAM_SIZE>) <unsigned integer>
  114. Gets the output size from the associated KDF ctx.
  115. If the algorithm produces a variable amount of output, SIZE_MAX should be
  116. returned.
  117. If the input parameters required to calculate the fixed output size have not yet
  118. been supplied, 0 should be returned indicating an error.
  119. =item "key" (B<OSSL_KDF_PARAM_KEY>) <octet string>
  120. Sets the key in the associated KDF ctx.
  121. =item "secret" (B<OSSL_KDF_PARAM_SECRET>) <octet string>
  122. Sets the secret in the associated KDF ctx.
  123. =item "pass" (B<OSSL_KDF_PARAM_PASSWORD>) <octet string>
  124. Sets the password in the associated KDF ctx.
  125. =item "cipher" (B<OSSL_KDF_PARAM_CIPHER>) <UTF8 string>
  126. =item "digest" (B<OSSL_KDF_PARAM_DIGEST>) <UTF8 string>
  127. =item "mac" (B<OSSL_KDF_PARAM_MAC>) <UTF8 string>
  128. Sets the name of the underlying cipher, digest or MAC to be used.
  129. It must name a suitable algorithm for the KDF that's being used.
  130. =item "maclen" (B<OSSL_KDF_PARAM_MAC_SIZE>) <octet string>
  131. Sets the length of the MAC in the associated KDF ctx.
  132. =item "properties" (B<OSSL_KDF_PARAM_PROPERTIES>) <UTF8 string>
  133. Sets the properties to be queried when trying to fetch the underlying algorithm.
  134. This must be given together with the algorithm naming parameter to be
  135. considered valid.
  136. =item "iter" (B<OSSL_KDF_PARAM_ITER>) <unsigned integer>
  137. Sets the number of iterations in the associated KDF ctx.
  138. =item "mode" (B<OSSL_KDF_PARAM_MODE>) <UTF8 string>
  139. Sets the mode in the associated KDF ctx.
  140. =item "pkcs5" (B<OSSL_KDF_PARAM_PKCS5>) <integer>
  141. Enables or diables the SP800-132 compliance checks.
  142. A mode of 0 enables the compliance checks.
  143. The checks performed are:
  144. =over 4
  145. =item - the iteration count is at least 1000.
  146. =item - the salt length is at least 128 bits.
  147. =item - the derived key length is at least 112 bits.
  148. =back
  149. =item "ukm" (B<OSSL_KDF_PARAM_UKM>) <octet string>
  150. Sets an optional random string that is provided by the sender called
  151. "partyAInfo". In CMS this is the user keying material.
  152. =item "cekalg" (B<OSSL_KDF_PARAM_CEK_ALG>) <UTF8 string>
  153. Sets the CEK wrapping algorithm name in the associated KDF ctx.
  154. =item "n" (B<OSSL_KDF_PARAM_SCRYPT_N>) <unsigned integer>
  155. Sets the scrypt work factor parameter N in the associated KDF ctx.
  156. =item "r" (B<OSSL_KDF_PARAM_SCRYPT_R>) <unsigned integer>
  157. Sets the scrypt work factor parameter r in the associated KDF ctx.
  158. =item "p" (B<OSSL_KDF_PARAM_SCRYPT_P>) <unsigned integer>
  159. Sets the scrypt work factor parameter p in the associated KDF ctx.
  160. =item "maxmem_bytes" (B<OSSL_KDF_PARAM_SCRYPT_MAXMEM>) <unsigned integer>
  161. Sets the scrypt work factor parameter maxmem in the associated KDF ctx.
  162. =item "info" (B<OSSL_KDF_PARAM_INFO>) <octet string>
  163. Sets the optional shared info in the associated KDF ctx.
  164. =item "seed" (B<OSSL_KDF_PARAM_SEED>) <octet string>
  165. Sets the IV in the associated KDF ctx.
  166. =item "xcghash" (B<OSSL_KDF_PARAM_SSHKDF_XCGHASH>) <octet string>
  167. Sets the xcghash in the associated KDF ctx.
  168. =item "session_id" (B<OSSL_KDF_PARAM_SSHKDF_SESSION_ID>) <octet string>
  169. Sets the session ID in the associated KDF ctx.
  170. =item "type" (B<OSSL_KDF_PARAM_SSHKDF_TYPE>) <UTF8 string>
  171. Sets the SSH KDF type parameter in the associated KDF ctx.
  172. There are six supported types:
  173. =over 4
  174. =item EVP_KDF_SSHKDF_TYPE_INITIAL_IV_CLI_TO_SRV
  175. The Initial IV from client to server.
  176. A single char of value 65 (ASCII char 'A').
  177. =item EVP_KDF_SSHKDF_TYPE_INITIAL_IV_SRV_TO_CLI
  178. The Initial IV from server to client
  179. A single char of value 66 (ASCII char 'B').
  180. =item EVP_KDF_SSHKDF_TYPE_ENCRYPTION_KEY_CLI_TO_SRV
  181. The Encryption Key from client to server
  182. A single char of value 67 (ASCII char 'C').
  183. =item EVP_KDF_SSHKDF_TYPE_ENCRYPTION_KEY_SRV_TO_CLI
  184. The Encryption Key from server to client
  185. A single char of value 68 (ASCII char 'D').
  186. =item EVP_KDF_SSHKDF_TYPE_INTEGRITY_KEY_CLI_TO_SRV
  187. The Integrity Key from client to server
  188. A single char of value 69 (ASCII char 'E').
  189. =item EVP_KDF_SSHKDF_TYPE_INTEGRITY_KEY_SRV_TO_CLI
  190. The Integrity Key from client to server
  191. A single char of value 70 (ASCII char 'F').
  192. =back
  193. =item "constant" (B<OSSL_KDF_PARAM_CONSTANT>) <octet string>
  194. Sets the constant value in the associated KDF ctx.
  195. =item "id" (B<OSSL_KDF_PARAM_PKCS12_ID>) <integer>
  196. Sets the intended usage of the output bits in the associated KDF ctx.
  197. It is defined as per RFC 7292 section B.3.
  198. =back
  199. =head1 RETURN VALUES
  200. OSSL_FUNC_kdf_newctx() and OSSL_FUNC_kdf_dupctx() should return the newly created
  201. provider side KDF context, or NULL on failure.
  202. OSSL_FUNC_kdf_derive(), OSSL_FUNC_kdf_get_params(),
  203. OSSL_FUNC_kdf_get_ctx_params() and OSSL_FUNC_kdf_set_ctx_params() should return 1 for
  204. success or 0 on error.
  205. OSSL_FUNC_kdf_gettable_params(), OSSL_FUNC_kdf_gettable_ctx_params() and
  206. OSSL_FUNC_kdf_settable_ctx_params() should return a constant B<OSSL_PARAM>
  207. array, or NULL if none is offered.
  208. =head1 NOTES
  209. The KDF life-cycle is described in L<life_cycle-kdf(7)>. Providers should
  210. ensure that the various transitions listed there are supported. At some point
  211. the EVP layer will begin enforcing the listed transitions.
  212. =head1 SEE ALSO
  213. L<provider(7)>, L<life_cycle-kdf(7)>, L<EVP_KDF(3)>.
  214. =head1 HISTORY
  215. The provider KDF interface was introduced in OpenSSL 3.0.
  216. =head1 COPYRIGHT
  217. Copyright 2020-2021 The OpenSSL Project Authors. All Rights Reserved.
  218. Licensed under the Apache License 2.0 (the "License"). You may not use
  219. this file except in compliance with the License. You can obtain a copy
  220. in the file LICENSE in the source distribution or at
  221. L<https://www.openssl.org/source/license.html>.
  222. =cut