OSSL_ENCODER_CTX.pod 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. =pod
  2. =head1 NAME
  3. OSSL_ENCODER_CTX,
  4. OSSL_ENCODER_CTX_new,
  5. OSSL_ENCODER_settable_ctx_params,
  6. OSSL_ENCODER_CTX_set_params,
  7. OSSL_ENCODER_CTX_free,
  8. OSSL_ENCODER_CTX_set_selection,
  9. OSSL_ENCODER_CTX_set_output_type,
  10. OSSL_ENCODER_CTX_set_output_structure,
  11. OSSL_ENCODER_CTX_add_encoder,
  12. OSSL_ENCODER_CTX_add_extra,
  13. OSSL_ENCODER_CTX_get_num_encoders,
  14. OSSL_ENCODER_INSTANCE,
  15. OSSL_ENCODER_INSTANCE_get_encoder,
  16. OSSL_ENCODER_INSTANCE_get_encoder_ctx,
  17. OSSL_ENCODER_INSTANCE_get_input_type,
  18. OSSL_ENCODER_INSTANCE_get_output_type,
  19. OSSL_ENCODER_INSTANCE_get_output_structure,
  20. OSSL_ENCODER_CONSTRUCT,
  21. OSSL_ENCODER_CLEANUP,
  22. OSSL_ENCODER_CTX_set_construct,
  23. OSSL_ENCODER_CTX_set_construct_data,
  24. OSSL_ENCODER_CTX_set_cleanup
  25. - Encoder context routines
  26. =head1 SYNOPSIS
  27. #include <openssl/encoder.h>
  28. typedef struct ossl_encoder_ctx_st OSSL_ENCODER_CTX;
  29. OSSL_ENCODER_CTX *OSSL_ENCODER_CTX_new();
  30. const OSSL_PARAM *OSSL_ENCODER_settable_ctx_params(OSSL_ENCODER *encoder);
  31. int OSSL_ENCODER_CTX_set_params(OSSL_ENCODER_CTX *ctx,
  32. const OSSL_PARAM params[]);
  33. void OSSL_ENCODER_CTX_free(OSSL_ENCODER_CTX *ctx);
  34. int OSSL_ENCODER_CTX_set_selection(OSSL_ENCODER_CTX *ctx, int selection);
  35. int OSSL_ENCODER_CTX_set_output_type(OSSL_ENCODER_CTX *ctx,
  36. const char *output_type);
  37. int OSSL_ENCODER_CTX_set_output_structure(OSSL_ENCODER_CTX *ctx,
  38. const char *output_structure);
  39. int OSSL_ENCODER_CTX_add_encoder(OSSL_ENCODER_CTX *ctx, OSSL_ENCODER *encoder);
  40. int OSSL_ENCODER_CTX_add_extra(OSSL_ENCODER_CTX *ctx,
  41. OSSL_LIB_CTX *libctx, const char *propq);
  42. int OSSL_ENCODER_CTX_get_num_encoders(OSSL_ENCODER_CTX *ctx);
  43. typedef struct ossl_encoder_instance_st OSSL_ENCODER_INSTANCE;
  44. OSSL_ENCODER *
  45. OSSL_ENCODER_INSTANCE_get_encoder(OSSL_ENCODER_INSTANCE *encoder_inst);
  46. void *
  47. OSSL_ENCODER_INSTANCE_get_encoder_ctx(OSSL_ENCODER_INSTANCE *encoder_inst);
  48. const char *
  49. OSSL_ENCODER_INSTANCE_get_input_type(OSSL_ENCODER_INSTANCE *encoder_inst);
  50. const char *
  51. OSSL_ENCODER_INSTANCE_get_output_type(OSSL_ENCODER_INSTANCE *encoder_inst);
  52. const char *
  53. OSSL_ENCODER_INSTANCE_get_output_structure(OSSL_ENCODER_INSTANCE *encoder_inst);
  54. typedef const void *OSSL_ENCODER_CONSTRUCT(OSSL_ENCODER_INSTANCE *encoder_inst,
  55. void *construct_data);
  56. typedef void OSSL_ENCODER_CLEANUP(void *construct_data);
  57. int OSSL_ENCODER_CTX_set_construct(OSSL_ENCODER_CTX *ctx,
  58. OSSL_ENCODER_CONSTRUCT *construct);
  59. int OSSL_ENCODER_CTX_set_construct_data(OSSL_ENCODER_CTX *ctx,
  60. void *construct_data);
  61. int OSSL_ENCODER_CTX_set_cleanup(OSSL_ENCODER_CTX *ctx,
  62. OSSL_ENCODER_CLEANUP *cleanup);
  63. =head1 DESCRIPTION
  64. Encoding an input object to the desired encoding may be done with a chain of
  65. encoder implementations, which means that the output from one encoder may be
  66. the input for the next in the chain. The B<OSSL_ENCODER_CTX> holds all the
  67. data about these encoders. This allows having generic format encoders such
  68. as DER to PEM, as well as more specialized encoders like RSA to DER.
  69. The final output type must be given, and a chain of encoders must end with
  70. an implementation that produces that output type.
  71. At the beginning of the encoding process, a contructor provided by the
  72. caller is called to ensure that there is an appropriate provider-side object
  73. to start with.
  74. The constructor is set with OSSL_ENCODER_CTX_set_construct().
  75. B<OSSL_ENCODER_INSTANCE> is an opaque structure that contains data about the
  76. encoder that is going to be used, and that may be useful for the
  77. constructor. There are some functions to extract data from this type,
  78. described in L</Constructor> below.
  79. =head2 Functions
  80. OSSL_ENCODER_CTX_new() creates a B<OSSL_ENCODER_CTX>.
  81. OSSL_ENCODER_settable_ctx_params() returns an L<OSSL_PARAM(3)>
  82. array of parameter descriptors.
  83. OSSL_ENCODER_CTX_set_params() attempts to set parameters specified
  84. with an L<OSSL_PARAM(3)> array I<params>. Parameters that the
  85. implementation doesn't recognise should be ignored.
  86. OSSL_ENCODER_CTX_free() frees the given context I<ctx>.
  87. OSSL_ENCODER_CTX_add_encoder() populates the B<OSSL_ENCODER_CTX>
  88. I<ctx> with a encoder, to be used to encode an input object.
  89. OSSL_ENCODER_CTX_add_extra() finds encoders that further encodes output
  90. from already added encoders, and adds them as well. This is used to build
  91. encoder chains.
  92. OSSL_ENCODER_CTX_set_output_type() sets the ending output type. This must
  93. be specified, and determines if a complete encoder chain is available.
  94. OSSL_ENCODER_CTX_set_output_structure() sets the desired output structure.
  95. This may be used to determines what encoder implementations may be used.
  96. Depending on the type of object being encoded, the output structure may
  97. not be relevant.
  98. OSSL_ENCODER_CTX_get_num_encoders() gets the number of encoders currently
  99. added to the context I<ctx>.
  100. OSSL_ENCODER_CTX_set_construct() sets the constructor I<construct>.
  101. OSSL_ENCODER_CTX_set_construct_data() sets the constructor data that is
  102. passed to the constructor every time it's called.
  103. OSSL_ENCODER_CTX_set_cleanup() sets the constructor data I<cleanup>
  104. function. This is called by L<OSSL_ENCODER_CTX_free(3)>.
  105. =head2 Constructor
  106. A B<OSSL_ENCODER_CONSTRUCT> gets the following arguments:
  107. =over 4
  108. =item I<encoder_inst>
  109. The B<OSSL_ENCODER_INSTANCE> for the encoder from which the constructor gets
  110. its data.
  111. =item I<construct_data>
  112. The pointer that was set with OSSL_ENCODE_CTX_set_construct_data().
  113. =back
  114. The constructor is expected to return a valid (non-NULL) pointer to a
  115. provider-native object that can be used as first input of an encoding chain,
  116. or NULL to indicate that an error has occured.
  117. These utility functions may be used by a constructor:
  118. OSSL_ENCODER_INSTANCE_get_encoder() can be used to get the encoder
  119. implementation of the encoder instance I<encoder_inst>.
  120. OSSL_ENCODER_INSTANCE_get_encoder_ctx() can be used to get the encoder
  121. implementation's provider context of the encoder instance I<encoder_inst>.
  122. OSSL_ENCODER_INSTANCE_get_input_type() can be used to get the input type for
  123. the encoder implementation of the encoder instance I<encoder_inst>.
  124. This may be NULL.
  125. OSSL_ENCODER_INSTANCE_get_output_type() can be used to get the output type
  126. for the encoder implementation of the encoder instance I<encoder_inst>.
  127. This will never be NULL.
  128. OSSL_ENCODER_INSTANCE_get_output_type() can be used to get the output type
  129. for the encoder implementation of the encoder instance I<encoder_inst>.
  130. This will never be NULL.
  131. OSSL_ENCODER_INSTANCE_get_output_structure() can be used to get the output
  132. structure for the encoder implementation of the encoder instance
  133. I<encoder_inst>.
  134. This may be NULL.
  135. =head1 RETURN VALUES
  136. OSSL_ENCODER_CTX_new() returns a pointer to a B<OSSL_ENCODER_CTX>, or NULL
  137. if the context structure couldn't be allocated.
  138. OSSL_ENCODER_settable_ctx_params() returns an L<OSSL_PARAM(3)> array, or
  139. NULL if none is available.
  140. OSSL_ENCODER_CTX_set_params() returns 1 if all recognised parameters were
  141. valid, or 0 if one of them was invalid or caused some other failure in the
  142. implementation.
  143. OSSL_ENCODER_CTX_add_encoder(), OSSL_ENCODER_CTX_add_extra(),
  144. OSSL_ENCODER_CTX_set_construct(), OSSL_ENCODER_CTX_set_construct_data() and
  145. OSSL_ENCODER_CTX_set_cleanup() return 1 on success, or 0 on failure.
  146. OSSL_ENCODER_CTX_get_num_encoders() returns the current number of encoders.
  147. It returns 0 if I<ctx> is NULL.
  148. OSSL_ENCODER_INSTANCE_get_encoder() returns an B<OSSL_ENCODER> pointer on
  149. success, or NULL on failure.
  150. OSSL_ENCODER_INSTANCE_get_encoder_ctx() returns a provider context pointer on
  151. success, or NULL on failure.
  152. OSSL_ENCODER_INSTANCE_get_output_type() returns a string with the name of the
  153. input type, if relevant. NULL is a valid returned value.
  154. OSSL_ENCODER_INSTANCE_get_output_type() returns a string with the name of the
  155. output type.
  156. OSSL_ENCODER_INSTANCE_get_output_structure() returns a string with the name
  157. of the output structure.
  158. =head1 SEE ALSO
  159. L<provider(7)>, L<OSSL_ENCODER(3)>
  160. =head1 HISTORY
  161. The functions described here were added in OpenSSL 3.0.
  162. =head1 COPYRIGHT
  163. Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
  164. Licensed under the Apache License 2.0 (the "License"). You may not use
  165. this file except in compliance with the License. You can obtain a copy
  166. in the file LICENSE in the source distribution or at
  167. L<https://www.openssl.org/source/license.html>.
  168. =cut