provider-asymcipher.pod 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. =pod
  2. =head1 NAME
  3. provider-asym_cipher - The asym_cipher library E<lt>-E<gt> provider functions
  4. =head1 SYNOPSIS
  5. =for openssl multiple includes
  6. #include <openssl/core_numbers.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 *OP_asym_cipher_newctx(void *provctx);
  15. void OP_asym_cipher_freectx(void *ctx);
  16. void *OP_asym_cipher_dupctx(void *ctx);
  17. /* Encryption */
  18. int OP_asym_cipher_encrypt_init(void *ctx, void *provkey);
  19. int OP_asym_cipher_encrypt(void *ctx, unsigned char *out, size_t *outlen,
  20. size_t outsize, const unsigned char *in,
  21. size_t inlen);
  22. /* Decryption */
  23. int OP_asym_cipher_decrypt_init(void *ctx, void *provkey);
  24. int OP_asym_cipher_decrypt(void *ctx, unsigned char *out, size_t *outlen,
  25. size_t outsize, const unsigned char *in,
  26. size_t inlen);
  27. /* Asymmetric Cipher parameters */
  28. int OP_asym_cipher_get_ctx_params(void *ctx, OSSL_PARAM params[]);
  29. const OSSL_PARAM *OP_asym_cipher_gettable_ctx_params(void);
  30. int OP_asym_cipher_set_ctx_params(void *ctx, const OSSL_PARAM params[]);
  31. const OSSL_PARAM *OP_asym_cipher_settable_ctx_params(void);
  32. =head1 DESCRIPTION
  33. This documentation is primarily aimed at provider authors. See L<provider(7)>
  34. for further information.
  35. The asymmetric cipher (OSSL_OP_ASYM_CIPHER) operation enables providers to
  36. implement asymmetric cipher algorithms and make them available to applications
  37. via the API functions L<EVP_PKEY_encrypt_init_ex(3)>, L<EVP_PKEY_encrypt(3)>,
  38. L<EVP_PKEY_decrypt_init_ex(3)>, L<EVP_PKEY_decrypt(3)> (as well
  39. as other related functions).
  40. All "functions" mentioned here are passed as function pointers between
  41. F<libcrypto> and the provider in B<OSSL_DISPATCH> arrays via
  42. B<OSSL_ALGORITHM> arrays that are returned by the provider's
  43. provider_query_operation() function
  44. (see L<provider-base(7)/Provider Functions>).
  45. All these "functions" have a corresponding function type definition
  46. named B<OSSL_{name}_fn>, and a helper function to retrieve the
  47. function pointer from an B<OSSL_DISPATCH> element named
  48. B<OSSL_get_{name}>.
  49. For example, the "function" OP_asym_cipher_newctx() has these:
  50. typedef void *(OSSL_OP_asym_cipher_newctx_fn)(void *provctx);
  51. static ossl_inline OSSL_OP_asym_cipher_newctx_fn
  52. OSSL_get_OP_asym_cipher_newctx(const OSSL_DISPATCH *opf);
  53. B<OSSL_DISPATCH> arrays are indexed by numbers that are provided as
  54. macros in L<openssl-core_numbers.h(7)>, as follows:
  55. OP_asym_cipher_newctx OSSL_FUNC_ASYM_CIPHER_NEWCTX
  56. OP_asym_cipher_freectx OSSL_FUNC_ASYM_CIPHER_FREECTX
  57. OP_asym_cipher_dupctx OSSL_FUNC_ASYM_CIPHER_DUPCTX
  58. OP_asym_cipher_encrypt_init OSSL_FUNC_ASYM_CIPHER_ENCRYPT_INIT
  59. OP_asym_cipher_encrypt OSSL_FUNC_ASYM_CIPHER_ENCRYPT
  60. OP_asym_cipher_decrypt_init OSSL_FUNC_ASYM_CIPHER_DECRYPT_INIT
  61. OP_asym_cipher_decrypt OSSL_FUNC_ASYM_CIPHER_DECRYPT
  62. OP_asym_cipher_get_ctx_params OSSL_FUNC_ASYM_CIPHER_GET_CTX_PARAMS
  63. OP_asym_cipher_gettable_ctx_params OSSL_FUNC_ASYM_CIPHER_GETTABLE_CTX_PARAMS
  64. OP_asym_cipher_set_ctx_params OSSL_FUNC_ASYM_CIPHER_SET_CTX_PARAMS
  65. OP_asym_cipher_settable_ctx_params OSSL_FUNC_ASYM_CIPHER_SETTABLE_CTX_PARAMS
  66. An asymmetric cipher algorithm implementation may not implement all of these
  67. functions.
  68. In order to be a consistent set of functions a provider must implement
  69. OP_asym_cipher_newctx and OP_asym_cipher_freectx.
  70. It must also implement both of OP_asym_cipher_encrypt_init and
  71. OP_asym_cipher_encrypt, or both of OP_asym_cipher_decrypt_init and
  72. OP_asym_cipher_decrypt.
  73. OP_asym_cipher_get_ctx_params is optional but if it is present then so must
  74. OP_asym_cipher_gettable_ctx_params.
  75. Similarly, OP_asym_cipher_set_ctx_params is optional but if it is present then
  76. so must OP_asym_cipher_settable_ctx_params.
  77. An asymmetric cipher algorithm must also implement some mechanism for generating,
  78. loading or importing keys via the key management (OSSL_OP_KEYMGMT) operation.
  79. See L<provider-keymgmt(7)> for further details.
  80. =head2 Context Management Functions
  81. OP_asym_cipher_newctx() should create and return a pointer to a provider side
  82. structure for holding context information during an asymmetric cipher operation.
  83. A pointer to this context will be passed back in a number of the other
  84. asymmetric cipher operation function calls.
  85. The parameter I<provctx> is the provider context generated during provider
  86. initialisation (see L<provider(3)>).
  87. OP_asym_cipher_freectx() is passed a pointer to the provider side asymmetric
  88. cipher context in the I<ctx> parameter.
  89. This function should free any resources associated with that context.
  90. OP_asym_cipher_dupctx() should duplicate the provider side asymmetric cipher
  91. context in the I<ctx> parameter and return the duplicate copy.
  92. =head2 Encryption Functions
  93. OP_asym_cipher_encrypt_init() initialises a context for an asymmetric encryption
  94. given a provider side asymmetric cipher context in the I<ctx> parameter, and a
  95. pointer to a provider key object in the I<provkey> parameter.
  96. The key object should have been previously generated, loaded or imported into
  97. the provider using the key management (OSSL_OP_KEYMGMT) operation (see
  98. provider-keymgmt(7)>.
  99. OP_asym_cipher_encrypt() performs the actual encryption itself.
  100. A previously initialised asymmetric cipher context is passed in the I<ctx>
  101. parameter.
  102. The data to be encrypted is pointed to by the I<in> parameter which is I<inlen>
  103. bytes long.
  104. Unless I<out> is NULL, the encrypted data should be written to the location
  105. pointed to by the I<out> parameter and it should not exceed I<outsize> bytes in
  106. length.
  107. The length of the encrypted data should be written to I<*outlen>.
  108. If I<out> is NULL then the maximum length of the encrypted data should be
  109. written to I<*outlen>.
  110. =head2 Decryption Functions
  111. OP_asym_cipher_decrypt_init() initialises a context for an asymmetric decryption
  112. given a provider side asymmetric cipher context in the I<ctx> parameter, and a
  113. pointer to a provider key object in the I<provkey> parameter.
  114. The key object should have been previously generated, loaded or imported into
  115. the provider using the key management (OSSL_OP_KEYMGMT) operation (see
  116. provider-keymgmt(7)>.
  117. OP_asym_cipher_decrypt() performs the actual decryption itself.
  118. A previously initialised asymmetric cipher context is passed in the I<ctx>
  119. parameter.
  120. The data to be decrypted is pointed to by the I<in> parameter which is I<inlen>
  121. bytes long.
  122. Unless I<out> is NULL, the decrypted data should be written to the location
  123. pointed to by the I<out> parameter and it should not exceed I<outsize> bytes in
  124. length.
  125. The length of the decrypted data should be written to I<*outlen>.
  126. If I<out> is NULL then the maximum length of the decrypted data should be
  127. written to I<*outlen>.
  128. =head2 Asymmetric Cipher Parameters
  129. See L<OSSL_PARAM(3)> for further details on the parameters structure used by
  130. the OP_asym_cipher_get_ctx_params() and OP_asym_cipher_set_ctx_params()
  131. functions.
  132. OP_asym_cipher_get_ctx_params() gets asymmetric cipher parameters associated
  133. with the given provider side asymmetric cipher context I<ctx> and stores them in
  134. I<params>.
  135. OP_asym_cipher_set_ctx_params() sets the asymmetric cipher parameters associated
  136. with the given provider side asymmetric cipher context I<ctx> to I<params>.
  137. Any parameter settings are additional to any that were previously set.
  138. Parameters currently recognised by built-in asymmetric cipher algorithms are as
  139. follows.
  140. Not all parameters are relevant to, or are understood by all asymmetric cipher
  141. algorithms:
  142. =over 4
  143. =item "pad-mode" (B<OSSL_ASYM_CIPHER_PARAM_PAD_MODE>) <integer>
  144. The type of padding to be used. The interpretation of this value will depend
  145. on the algorithm in use. The default provider understands these RSA padding
  146. modes: 1 (RSA_PKCS1_PADDING), 2 (RSA_SSLV23_PADDING), 3 (RSA_NO_PADDING),
  147. 4 (RSA_PKCS1_OAEP_PADDING), 5 (RSA_X931_PADDING), 6 (RSA_PKCS1_PSS_PADDING) and
  148. 7 (RSA_PKCS1_WITH_TLS_PADDING). See L<EVP_PKEY_CTX_set_rsa_padding(3)> for
  149. further details.
  150. =item "digest" (B<OSSL_ASYM_CIPHER_PARAM_OAEP_DIGEST>) <UTF8 string>
  151. Gets or sets the name of the OAEP digest algorithm used when OAEP padding is in
  152. use.
  153. =item "digest-props" (B<OSSL_ASYM_CIPHER_PARAM_OAEP_DIGEST_PROPS>) <UTF8 string>
  154. Gets or sets the properties to use when fetching the OAEP digest algorithm.
  155. =item "mgf1-digest" (B<OSSL_ASYM_CIPHER_PARAM_MGF1_DIGEST>) <UTF8 string>
  156. Gets or sets the name of the MGF1 digest algorithm used when OAEP or PSS padding
  157. is in use.
  158. =item "mgf1-digest-props" (B<OSSL_ASYM_CIPHER_PARAM_MGF1_DIGEST_PROPS>) <UTF8 string>
  159. Gets or sets the properties to use when fetching the MGF1 digest algorithm.
  160. =item "oaep-label" (B<OSSL_ASYM_CIPHER_PARAM_OAEP_LABEL>) <octet string>
  161. Gets or sets the OAEP label used when OAEP padding is in use.
  162. =item "oaep-label-len" (B<OSSL_ASYM_CIPHER_PARAM_OAEP_LABEL_LEN>) <size_t>
  163. Gets the length of an OAEP label when OAEP padding is in use.
  164. =item "tls-client-version" (B<OSSL_ASYM_CIPHER_PARAM_TLS_CLIENT_VERSION>) <unsigned integer>
  165. The TLS protocol version first requested by the client. See
  166. B<RSA_PKCS1_WITH_TLS_PADDING> on the page L<EVP_PKEY_CTX_set_rsa_padding(3)>.
  167. =item "tls-negotiated-version" (B<OSSL_ASYM_CIPHER_PARAM_TLS_CLIENT_VERSION>) <unsigned integer>
  168. The negotiated TLS protocol version. See
  169. B<RSA_PKCS1_WITH_TLS_PADDING> on the page L<EVP_PKEY_CTX_set_rsa_padding(3)>.
  170. =back
  171. OP_asym_cipher_gettable_ctx_params() and OP_asym_cipher_settable_ctx_params()
  172. get a constant B<OSSL_PARAM> array that describes the gettable and settable
  173. parameters, i.e. parameters that can be used with OP_asym_cipherget_ctx_params()
  174. and OP_asym_cipher_set_ctx_params() respectively.
  175. See L<OSSL_PARAM(3)> for the use of B<OSSL_PARAM> as parameter descriptor.
  176. =head1 RETURN VALUES
  177. OP_asym_cipher_newctx() and OP_asym_cipher_dupctx() should return the newly
  178. created provider side asymmetric cipher context, or NULL on failure.
  179. All other functions should return 1 for success or 0 on error.
  180. =head1 SEE ALSO
  181. L<provider(7)>
  182. =head1 HISTORY
  183. The provider ASYM_CIPHER interface was introduced in OpenSSL 3.0.
  184. =head1 COPYRIGHT
  185. Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
  186. Licensed under the Apache License 2.0 (the "License"). You may not use
  187. this file except in compliance with the License. You can obtain a copy
  188. in the file LICENSE in the source distribution or at
  189. L<https://www.openssl.org/source/license.html>.
  190. =cut