cec38069f278bdea819c1f29c54e0e9dc421f966
[openssl.git] / include / openssl / core_numbers.h
1 /*
2  * Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #ifndef OPENSSL_CORE_NUMBERS_H
11 # define OPENSSL_CORE_NUMBERS_H
12
13 # include <stdarg.h>
14 # include <openssl/core.h>
15
16 # ifdef __cplusplus
17 extern "C" {
18 # endif
19
20 /*-
21  * Identities
22  * ----------
23  *
24  * All series start with 1, to allow 0 to be an array terminator.
25  * For any FUNC identity, we also provide a function signature typedef
26  * and a static inline function to extract a function pointer from a
27  * OSSL_DISPATCH element in a type safe manner.
28  *
29  * Names:
30  * for any function base name 'foo' (uppercase form 'FOO'), we will have
31  * the following:
32  * - a macro for the identity with the name OSSL_FUNC_'FOO' or derivates
33  *   thereof (to be specified further down)
34  * - a function signature typedef with the name OSSL_'foo'_fn
35  * - a function pointer extractor function with the name OSSL_'foo'
36  */
37
38 /*
39  * Helper macro to create the function signature typedef and the extractor
40  * |type| is the return-type of the function, |name| is the name of the
41  * function to fetch, and |args| is a parenthesized list of parameters
42  * for the function (that is, it is |name|'s function signature).
43  */
44 #define OSSL_CORE_MAKE_FUNC(type,name,args)                             \
45     typedef type (OSSL_##name##_fn)args;                                \
46     static ossl_inline \
47     OSSL_##name##_fn *OSSL_get_##name(const OSSL_DISPATCH *opf)         \
48     {                                                                   \
49         return (OSSL_##name##_fn *)opf->function;                       \
50     }
51
52 /*
53  * Core function identities, for the two OSSL_DISPATCH tables being passed
54  * in the OSSL_provider_init call.
55  *
56  * 0 serves as a marker for the end of the OSSL_DISPATCH array, and must
57  * therefore NEVER be used as a function identity.
58  */
59 /* Functions provided by the Core to the provider, reserved numbers 1-1023 */
60 # define OSSL_FUNC_CORE_GETTABLE_PARAMS        1
61 OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *,
62                     core_gettable_params,(const OSSL_PROVIDER *prov))
63 # define OSSL_FUNC_CORE_GET_PARAMS             2
64 OSSL_CORE_MAKE_FUNC(int,core_get_params,(const OSSL_PROVIDER *prov,
65                                          OSSL_PARAM params[]))
66 # define OSSL_FUNC_CORE_THREAD_START           3
67 OSSL_CORE_MAKE_FUNC(int,core_thread_start,(const OSSL_PROVIDER *prov,
68                                            OSSL_thread_stop_handler_fn handfn))
69 # define OSSL_FUNC_CORE_GET_LIBRARY_CONTEXT    4
70 OSSL_CORE_MAKE_FUNC(OPENSSL_CTX *,core_get_library_context,
71                     (const OSSL_PROVIDER *prov))
72 # define OSSL_FUNC_CORE_NEW_ERROR              5
73 OSSL_CORE_MAKE_FUNC(void,core_new_error,(const OSSL_PROVIDER *prov))
74 # define OSSL_FUNC_CORE_SET_ERROR_DEBUG        6
75 OSSL_CORE_MAKE_FUNC(void,core_set_error_debug,
76                     (const OSSL_PROVIDER *prov,
77                      const char *file, int line, const char *func))
78 # define OSSL_FUNC_CORE_VSET_ERROR             7
79 OSSL_CORE_MAKE_FUNC(void,core_vset_error,
80                     (const OSSL_PROVIDER *prov,
81                      uint32_t reason, const char *fmt, va_list args))
82
83 /* Memory allocation, freeing, clearing. */
84 #define OSSL_FUNC_CRYPTO_MALLOC               10
85 OSSL_CORE_MAKE_FUNC(void *,
86         CRYPTO_malloc, (size_t num, const char *file, int line))
87 #define OSSL_FUNC_CRYPTO_ZALLOC               11
88 OSSL_CORE_MAKE_FUNC(void *,
89         CRYPTO_zalloc, (size_t num, const char *file, int line))
90 #define OSSL_FUNC_CRYPTO_FREE                 12
91 OSSL_CORE_MAKE_FUNC(void,
92         CRYPTO_free, (void *ptr, const char *file, int line))
93 #define OSSL_FUNC_CRYPTO_CLEAR_FREE           13
94 OSSL_CORE_MAKE_FUNC(void,
95         CRYPTO_clear_free, (void *ptr, size_t num, const char *file, int line))
96 #define OSSL_FUNC_CRYPTO_REALLOC              14
97 OSSL_CORE_MAKE_FUNC(void *,
98         CRYPTO_realloc, (void *addr, size_t num, const char *file, int line))
99 #define OSSL_FUNC_CRYPTO_CLEAR_REALLOC        15
100 OSSL_CORE_MAKE_FUNC(void *,
101         CRYPTO_clear_realloc, (void *addr, size_t old_num, size_t num,
102                                const char *file, int line))
103 #define OSSL_FUNC_CRYPTO_SECURE_MALLOC        16
104 OSSL_CORE_MAKE_FUNC(void *,
105         CRYPTO_secure_malloc, (size_t num, const char *file, int line))
106 #define OSSL_FUNC_CRYPTO_SECURE_ZALLOC        17
107 OSSL_CORE_MAKE_FUNC(void *,
108         CRYPTO_secure_zalloc, (size_t num, const char *file, int line))
109 #define OSSL_FUNC_CRYPTO_SECURE_FREE          18
110 OSSL_CORE_MAKE_FUNC(void,
111         CRYPTO_secure_free, (void *ptr, const char *file, int line))
112 #define OSSL_FUNC_CRYPTO_SECURE_CLEAR_FREE    19
113 OSSL_CORE_MAKE_FUNC(void,
114         CRYPTO_secure_clear_free, (void *ptr, size_t num, const char *file,
115                                    int line))
116 #define OSSL_FUNC_CRYPTO_SECURE_ALLOCATED     20
117 OSSL_CORE_MAKE_FUNC(int,
118         CRYPTO_secure_allocated, (const void *ptr))
119 #define OSSL_FUNC_OPENSSL_CLEANSE             21
120 OSSL_CORE_MAKE_FUNC(void,
121         OPENSSL_cleanse, (void *ptr, size_t len))
122
123 /* Bio functions provided by the core */
124 #define OSSL_FUNC_BIO_NEW_FILE                22
125 #define OSSL_FUNC_BIO_NEW_MEMBUF              23
126 #define OSSL_FUNC_BIO_READ_EX                 24
127 #define OSSL_FUNC_BIO_FREE                    25
128
129 OSSL_CORE_MAKE_FUNC(BIO *, BIO_new_file, (const char *filename, const char *mode))
130 OSSL_CORE_MAKE_FUNC(BIO *, BIO_new_membuf, (const void *buf, int len))
131 OSSL_CORE_MAKE_FUNC(int, BIO_read_ex, (BIO *bio, void *data, size_t data_len,
132                                        size_t *bytes_read))
133 OSSL_CORE_MAKE_FUNC(int, BIO_free, (BIO *bio))
134
135 /* Functions provided by the provider to the Core, reserved numbers 1024-1535 */
136 # define OSSL_FUNC_PROVIDER_TEARDOWN         1024
137 OSSL_CORE_MAKE_FUNC(void,provider_teardown,(void *provctx))
138 # define OSSL_FUNC_PROVIDER_GETTABLE_PARAMS  1025
139 OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *,
140                     provider_gettable_params,(void *provctx))
141 # define OSSL_FUNC_PROVIDER_GET_PARAMS       1026
142 OSSL_CORE_MAKE_FUNC(int,provider_get_params,(void *provctx,
143                                              OSSL_PARAM params[]))
144 # define OSSL_FUNC_PROVIDER_QUERY_OPERATION  1027
145 OSSL_CORE_MAKE_FUNC(const OSSL_ALGORITHM *,provider_query_operation,
146                     (void *provctx, int operation_id, const int *no_store))
147 # define OSSL_FUNC_PROVIDER_GET_REASON_STRINGS 1028
148 OSSL_CORE_MAKE_FUNC(const OSSL_ITEM *,provider_get_reason_strings,
149                     (void *provctx))
150
151 /* Operations */
152
153 # define OSSL_OP_DIGEST                              1
154 # define OSSL_OP_CIPHER                              2   /* Symmetric Ciphers */
155 # define OSSL_OP_MAC                                 3
156 # define OSSL_OP_KDF                                 4
157 # define OSSL_OP_KEYMGMT                            10
158 # define OSSL_OP_KEYEXCH                            11
159 # define OSSL_OP_SIGNATURE                          12
160 /* Highest known operation number */
161 # define OSSL_OP__HIGHEST                           12
162
163 /* Digests */
164
165 # define OSSL_FUNC_DIGEST_NEWCTX                     1
166 # define OSSL_FUNC_DIGEST_INIT                       2
167 # define OSSL_FUNC_DIGEST_UPDATE                     3
168 # define OSSL_FUNC_DIGEST_FINAL                      4
169 # define OSSL_FUNC_DIGEST_DIGEST                     5
170 # define OSSL_FUNC_DIGEST_FREECTX                    6
171 # define OSSL_FUNC_DIGEST_DUPCTX                     7
172 # define OSSL_FUNC_DIGEST_GET_PARAMS                 8
173 # define OSSL_FUNC_DIGEST_SET_CTX_PARAMS             9
174 # define OSSL_FUNC_DIGEST_GET_CTX_PARAMS            10
175 # define OSSL_FUNC_DIGEST_GETTABLE_PARAMS           11
176 # define OSSL_FUNC_DIGEST_SETTABLE_CTX_PARAMS       12
177 # define OSSL_FUNC_DIGEST_GETTABLE_CTX_PARAMS       13
178
179 OSSL_CORE_MAKE_FUNC(void *, OP_digest_newctx, (void *provctx))
180 OSSL_CORE_MAKE_FUNC(int, OP_digest_init, (void *dctx))
181 OSSL_CORE_MAKE_FUNC(int, OP_digest_update,
182                     (void *dctx, const unsigned char *in, size_t inl))
183 OSSL_CORE_MAKE_FUNC(int, OP_digest_final,
184                     (void *dctx,
185                      unsigned char *out, size_t *outl, size_t outsz))
186 OSSL_CORE_MAKE_FUNC(int, OP_digest_digest,
187                     (void *provctx, const unsigned char *in, size_t inl,
188                      unsigned char *out, size_t *outl, size_t outsz))
189
190 OSSL_CORE_MAKE_FUNC(void, OP_digest_freectx, (void *dctx))
191 OSSL_CORE_MAKE_FUNC(void *, OP_digest_dupctx, (void *dctx))
192
193 OSSL_CORE_MAKE_FUNC(int, OP_digest_get_params, (OSSL_PARAM params[]))
194 OSSL_CORE_MAKE_FUNC(int, OP_digest_set_ctx_params,
195                     (void *vctx, const OSSL_PARAM params[]))
196 OSSL_CORE_MAKE_FUNC(int, OP_digest_get_ctx_params,
197                     (void *vctx, OSSL_PARAM params[]))
198 OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, OP_digest_gettable_params, (void))
199 OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, OP_digest_settable_ctx_params, (void))
200 OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, OP_digest_gettable_ctx_params, (void))
201
202 /* Symmetric Ciphers */
203
204 # define OSSL_FUNC_CIPHER_NEWCTX                     1
205 # define OSSL_FUNC_CIPHER_ENCRYPT_INIT               2
206 # define OSSL_FUNC_CIPHER_DECRYPT_INIT               3
207 # define OSSL_FUNC_CIPHER_UPDATE                     4
208 # define OSSL_FUNC_CIPHER_FINAL                      5
209 # define OSSL_FUNC_CIPHER_CIPHER                     6
210 # define OSSL_FUNC_CIPHER_FREECTX                    7
211 # define OSSL_FUNC_CIPHER_DUPCTX                     8
212 # define OSSL_FUNC_CIPHER_GET_PARAMS                 9
213 # define OSSL_FUNC_CIPHER_GET_CTX_PARAMS            10
214 # define OSSL_FUNC_CIPHER_SET_CTX_PARAMS            11
215 # define OSSL_FUNC_CIPHER_GETTABLE_PARAMS           12
216 # define OSSL_FUNC_CIPHER_GETTABLE_CTX_PARAMS       13
217 # define OSSL_FUNC_CIPHER_SETTABLE_CTX_PARAMS       14
218
219 OSSL_CORE_MAKE_FUNC(void *, OP_cipher_newctx, (void *provctx))
220 OSSL_CORE_MAKE_FUNC(int, OP_cipher_encrypt_init, (void *cctx,
221                                                   const unsigned char *key,
222                                                   size_t keylen,
223                                                   const unsigned char *iv,
224                                                   size_t ivlen))
225 OSSL_CORE_MAKE_FUNC(int, OP_cipher_decrypt_init, (void *cctx,
226                                                   const unsigned char *key,
227                                                   size_t keylen,
228                                                   const unsigned char *iv,
229                                                   size_t ivlen))
230 OSSL_CORE_MAKE_FUNC(int, OP_cipher_update,
231                     (void *cctx,
232                      unsigned char *out, size_t *outl, size_t outsize,
233                      const unsigned char *in, size_t inl))
234 OSSL_CORE_MAKE_FUNC(int, OP_cipher_final,
235                     (void *cctx,
236                      unsigned char *out, size_t *outl, size_t outsize))
237 OSSL_CORE_MAKE_FUNC(int, OP_cipher_cipher,
238                     (void *cctx,
239                      unsigned char *out, size_t *outl, size_t outsize,
240                      const unsigned char *in, size_t inl))
241 OSSL_CORE_MAKE_FUNC(void, OP_cipher_freectx, (void *cctx))
242 OSSL_CORE_MAKE_FUNC(void *, OP_cipher_dupctx, (void *cctx))
243 OSSL_CORE_MAKE_FUNC(int, OP_cipher_get_params, (OSSL_PARAM params[]))
244 OSSL_CORE_MAKE_FUNC(int, OP_cipher_get_ctx_params, (void *cctx,
245                                                     OSSL_PARAM params[]))
246 OSSL_CORE_MAKE_FUNC(int, OP_cipher_set_ctx_params, (void *cctx,
247                                                     const OSSL_PARAM params[]))
248 OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, OP_cipher_gettable_params,     (void))
249 OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, OP_cipher_settable_ctx_params, (void))
250 OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, OP_cipher_gettable_ctx_params, (void))
251
252 /* MACs */
253
254 # define OSSL_FUNC_MAC_NEWCTX                        1
255 # define OSSL_FUNC_MAC_DUPCTX                        2
256 # define OSSL_FUNC_MAC_FREECTX                       3
257 # define OSSL_FUNC_MAC_INIT                          4
258 # define OSSL_FUNC_MAC_UPDATE                        5
259 # define OSSL_FUNC_MAC_FINAL                         6
260 # define OSSL_FUNC_MAC_GET_PARAMS                    7
261 # define OSSL_FUNC_MAC_GET_CTX_PARAMS                8
262 # define OSSL_FUNC_MAC_SET_CTX_PARAMS                9
263 # define OSSL_FUNC_MAC_GETTABLE_PARAMS              10
264 # define OSSL_FUNC_MAC_GETTABLE_CTX_PARAMS          11
265 # define OSSL_FUNC_MAC_SETTABLE_CTX_PARAMS          12
266
267 OSSL_CORE_MAKE_FUNC(void *, OP_mac_newctx, (void *provctx))
268 OSSL_CORE_MAKE_FUNC(void *, OP_mac_dupctx, (void *src))
269 OSSL_CORE_MAKE_FUNC(void, OP_mac_freectx, (void *mctx))
270 OSSL_CORE_MAKE_FUNC(size_t, OP_mac_size, (void *mctx))
271 OSSL_CORE_MAKE_FUNC(int, OP_mac_init, (void *mctx))
272 OSSL_CORE_MAKE_FUNC(int, OP_mac_update,
273                     (void *mctx, const unsigned char *in, size_t inl))
274 OSSL_CORE_MAKE_FUNC(int, OP_mac_final,
275                     (void *mctx,
276                      unsigned char *out, size_t *outl, size_t outsize))
277 OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, OP_mac_gettable_params, (void))
278 OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, OP_mac_gettable_ctx_params, (void))
279 OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, OP_mac_settable_ctx_params, (void))
280 OSSL_CORE_MAKE_FUNC(int, OP_mac_get_params, (OSSL_PARAM params[]))
281 OSSL_CORE_MAKE_FUNC(int, OP_mac_get_ctx_params,
282                     (void *mctx, OSSL_PARAM params[]))
283 OSSL_CORE_MAKE_FUNC(int, OP_mac_set_ctx_params,
284                     (void *mctx, const OSSL_PARAM params[]))
285
286 /* KDFs and PRFs */
287
288 # define OSSL_FUNC_KDF_NEWCTX                        1
289 # define OSSL_FUNC_KDF_DUPCTX                        2
290 # define OSSL_FUNC_KDF_FREECTX                       3
291 # define OSSL_FUNC_KDF_RESET                         4
292 # define OSSL_FUNC_KDF_DERIVE                        5
293 # define OSSL_FUNC_KDF_GETTABLE_PARAMS               6
294 # define OSSL_FUNC_KDF_GETTABLE_CTX_PARAMS           7
295 # define OSSL_FUNC_KDF_SETTABLE_CTX_PARAMS           8
296 # define OSSL_FUNC_KDF_GET_PARAMS                    9
297 # define OSSL_FUNC_KDF_GET_CTX_PARAMS               10
298 # define OSSL_FUNC_KDF_SET_CTX_PARAMS               11
299
300 OSSL_CORE_MAKE_FUNC(void *, OP_kdf_newctx, (void *provctx))
301 OSSL_CORE_MAKE_FUNC(void *, OP_kdf_dupctx, (void *src))
302 OSSL_CORE_MAKE_FUNC(void, OP_kdf_freectx, (void *kctx))
303 OSSL_CORE_MAKE_FUNC(void, OP_kdf_reset, (void *kctx))
304 OSSL_CORE_MAKE_FUNC(int, OP_kdf_derive, (void *kctx, unsigned char *key,
305                                           size_t keylen))
306 OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, OP_kdf_gettable_params, (void))
307 OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, OP_kdf_gettable_ctx_params, (void))
308 OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, OP_kdf_settable_ctx_params, (void))
309 OSSL_CORE_MAKE_FUNC(int, OP_kdf_get_params, (OSSL_PARAM params[]))
310 OSSL_CORE_MAKE_FUNC(int, OP_kdf_get_ctx_params,
311                     (void *kctx, OSSL_PARAM params[]))
312 OSSL_CORE_MAKE_FUNC(int, OP_kdf_set_ctx_params,
313                     (void *kctx, const OSSL_PARAM params[]))
314
315 /*-
316  * Key management
317  *
318  * Key domain parameter references can be created in several manners:
319  * - by importing the domain parameter material via an OSSL_PARAM array.
320  * - by generating key domain parameters, given input via an OSSL_PARAM
321  *   array.
322  *
323  * Key references can be created in several manners:
324  * - by importing the key material via an OSSL_PARAM array.
325  * - by generating a key, given optional domain parameters and
326  *   additional keygen parameters.
327  *   If domain parameters are given, they must have been generated using
328  *   the domain parameter generator functions.
329  *   If the domain parameters comes from a different provider, results
330  *   are undefined.
331  *   THE CALLER MUST ENSURE THAT CORRECT DOMAIN PARAMETERS ARE USED.
332  * - by loading an internal key, given a binary blob that forms an identity.
333  *   THE CALLER MUST ENSURE THAT A CORRECT IDENTITY IS USED.
334  */
335
336 /* Key domain parameter creation and destruction */
337 # define OSSL_FUNC_KEYMGMT_IMPORTDOMPARAMS          1
338 # define OSSL_FUNC_KEYMGMT_GENDOMPARAMS             2
339 # define OSSL_FUNC_KEYMGMT_FREEDOMPARAMS            3
340 OSSL_CORE_MAKE_FUNC(void *, OP_keymgmt_importdomparams,
341                     (void *provctx, const OSSL_PARAM params[]))
342 OSSL_CORE_MAKE_FUNC(void *, OP_keymgmt_gendomparams,
343                     (void *provctx, const OSSL_PARAM params[]))
344 OSSL_CORE_MAKE_FUNC(void, OP_keymgmt_freedomparams, (void *domparams))
345
346 /* Key domain parameter export */
347 # define OSSL_FUNC_KEYMGMT_EXPORTDOMPARAMS          4
348 OSSL_CORE_MAKE_FUNC(int, OP_keymgmt_exportdomparams,
349                     (void *domparams, OSSL_PARAM params[]))
350
351 /* Key domain parameter discovery */
352 # define OSSL_FUNC_KEYMGMT_IMPORTDOMPARAM_TYPES     5
353 # define OSSL_FUNC_KEYMGMT_EXPORTDOMPARAM_TYPES     6
354 OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, OP_keymgmt_importdomparam_types,
355                     (void))
356 OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, OP_keymgmt_exportdomparam_types,
357                     (void))
358
359 /* Key creation and destruction */
360 # define OSSL_FUNC_KEYMGMT_IMPORTKEY               10
361 # define OSSL_FUNC_KEYMGMT_GENKEY                  11
362 # define OSSL_FUNC_KEYMGMT_LOADKEY                 12
363 # define OSSL_FUNC_KEYMGMT_FREEKEY                 13
364 OSSL_CORE_MAKE_FUNC(void *, OP_keymgmt_importkey,
365                     (void *provctx, const OSSL_PARAM params[]))
366 OSSL_CORE_MAKE_FUNC(void *, OP_keymgmt_genkey,
367                     (void *provctx,
368                      void *domparams, const OSSL_PARAM genkeyparams[]))
369 OSSL_CORE_MAKE_FUNC(void *, OP_keymgmt_loadkey,
370                     (void *provctx, void *id, size_t idlen))
371 OSSL_CORE_MAKE_FUNC(void, OP_keymgmt_freekey, (void *key))
372
373 /* Key export */
374 # define OSSL_FUNC_KEYMGMT_EXPORTKEY               14
375 OSSL_CORE_MAKE_FUNC(int, OP_keymgmt_exportkey,
376                     (void *key, OSSL_PARAM params[]))
377
378 /* Key discovery */
379 # define OSSL_FUNC_KEYMGMT_IMPORTKEY_TYPES         15
380 # define OSSL_FUNC_KEYMGMT_EXPORTKEY_TYPES         16
381 OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, OP_keymgmt_importkey_types, (void))
382 OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, OP_keymgmt_exportkey_types, (void))
383
384 /* Key Exchange */
385
386 # define OSSL_FUNC_KEYEXCH_NEWCTX                      1
387 # define OSSL_FUNC_KEYEXCH_INIT                        2
388 # define OSSL_FUNC_KEYEXCH_DERIVE                      3
389 # define OSSL_FUNC_KEYEXCH_SET_PEER                    4
390 # define OSSL_FUNC_KEYEXCH_FREECTX                     5
391 # define OSSL_FUNC_KEYEXCH_DUPCTX                      6
392 # define OSSL_FUNC_KEYEXCH_SET_CTX_PARAMS              7
393 # define OSSL_FUNC_KEYEXCH_SETTABLE_CTX_PARAMS         8
394
395 OSSL_CORE_MAKE_FUNC(void *, OP_keyexch_newctx, (void *provctx))
396 OSSL_CORE_MAKE_FUNC(int, OP_keyexch_init, (void *ctx, void *provkey))
397 OSSL_CORE_MAKE_FUNC(int, OP_keyexch_derive, (void *ctx,  unsigned char *secret,
398                                              size_t *secretlen, size_t outlen))
399 OSSL_CORE_MAKE_FUNC(int, OP_keyexch_set_peer, (void *ctx, void *provkey))
400 OSSL_CORE_MAKE_FUNC(void, OP_keyexch_freectx, (void *ctx))
401 OSSL_CORE_MAKE_FUNC(void *, OP_keyexch_dupctx, (void *ctx))
402 OSSL_CORE_MAKE_FUNC(int, OP_keyexch_set_ctx_params, (void *ctx,
403                                                      const OSSL_PARAM params[]))
404 OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, OP_keyexch_settable_ctx_params,
405                     (void))
406
407 /* Signature */
408
409 # define OSSL_FUNC_SIGNATURE_NEWCTX                  1
410 # define OSSL_FUNC_SIGNATURE_SIGN_INIT               2
411 # define OSSL_FUNC_SIGNATURE_SIGN                    3
412 # define OSSL_FUNC_SIGNATURE_VERIFY_INIT             4
413 # define OSSL_FUNC_SIGNATURE_VERIFY                  5
414 # define OSSL_FUNC_SIGNATURE_VERIFY_RECOVER_INIT     6
415 # define OSSL_FUNC_SIGNATURE_VERIFY_RECOVER          7
416 # define OSSL_FUNC_SIGNATURE_FREECTX                 8
417 # define OSSL_FUNC_SIGNATURE_DUPCTX                  9
418 # define OSSL_FUNC_SIGNATURE_GET_CTX_PARAMS         10
419 # define OSSL_FUNC_SIGNATURE_GETTABLE_CTX_PARAMS    11
420 # define OSSL_FUNC_SIGNATURE_SET_CTX_PARAMS         12
421 # define OSSL_FUNC_SIGNATURE_SETTABLE_CTX_PARAMS    13
422
423 OSSL_CORE_MAKE_FUNC(void *, OP_signature_newctx, (void *provctx))
424 OSSL_CORE_MAKE_FUNC(int, OP_signature_sign_init, (void *ctx, void *provkey))
425 OSSL_CORE_MAKE_FUNC(int, OP_signature_sign, (void *ctx,  unsigned char *sig,
426                                              size_t *siglen, size_t sigsize,
427                                              const unsigned char *tbs,
428                                              size_t tbslen))
429 OSSL_CORE_MAKE_FUNC(int, OP_signature_verify_init, (void *ctx, void *provkey))
430 OSSL_CORE_MAKE_FUNC(int, OP_signature_verify, (void *ctx,
431                                                const unsigned char *sig,
432                                                size_t siglen,
433                                                const unsigned char *tbs,
434                                                size_t tbslen))
435 OSSL_CORE_MAKE_FUNC(int, OP_signature_verify_recover_init, (void *ctx,
436                                                             void *provkey))
437 OSSL_CORE_MAKE_FUNC(int, OP_signature_verify_recover, (void *ctx,
438                                                        unsigned char *rout,
439                                                        size_t *routlen,
440                                                        size_t routsize,
441                                                        const unsigned char *sig,
442                                                        size_t siglen))
443 OSSL_CORE_MAKE_FUNC(void, OP_signature_freectx, (void *ctx))
444 OSSL_CORE_MAKE_FUNC(void *, OP_signature_dupctx, (void *ctx))
445 OSSL_CORE_MAKE_FUNC(int, OP_signature_get_ctx_params,
446                     (void *ctx, OSSL_PARAM params[]))
447 OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, OP_signature_gettable_ctx_params,
448                     (void))
449 OSSL_CORE_MAKE_FUNC(int, OP_signature_set_ctx_params,
450                     (void *ctx, const OSSL_PARAM params[]))
451 OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, OP_signature_settable_ctx_params,
452                     (void))
453
454 # ifdef __cplusplus
455 }
456 # endif
457
458 #endif