Remove legacy sign/verify from EVP_MD.
[openssl.git] / crypto / engine / eng_openssl.c
1 /* crypto/engine/eng_openssl.c */
2 /*
3  * Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL project
4  * 2000.
5  */
6 /* ====================================================================
7  * Copyright (c) 1999-2001 The OpenSSL Project.  All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  *
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in
18  *    the documentation and/or other materials provided with the
19  *    distribution.
20  *
21  * 3. All advertising materials mentioning features or use of this
22  *    software must display the following acknowledgment:
23  *    "This product includes software developed by the OpenSSL Project
24  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
25  *
26  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
27  *    endorse or promote products derived from this software without
28  *    prior written permission. For written permission, please contact
29  *    licensing@OpenSSL.org.
30  *
31  * 5. Products derived from this software may not be called "OpenSSL"
32  *    nor may "OpenSSL" appear in their names without prior written
33  *    permission of the OpenSSL Project.
34  *
35  * 6. Redistributions of any form whatsoever must retain the following
36  *    acknowledgment:
37  *    "This product includes software developed by the OpenSSL Project
38  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
41  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
43  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
44  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
46  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
50  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
51  * OF THE POSSIBILITY OF SUCH DAMAGE.
52  * ====================================================================
53  *
54  * This product includes cryptographic software written by Eric Young
55  * (eay@cryptsoft.com).  This product includes software written by Tim
56  * Hudson (tjh@cryptsoft.com).
57  *
58  */
59 /* ====================================================================
60  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
61  * ECDH support in OpenSSL originally developed by
62  * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
63  */
64
65 #include <stdio.h>
66 #include <openssl/crypto.h>
67 #include "internal/cryptlib.h"
68 #include <openssl/engine.h>
69 #include <openssl/dso.h>
70 #include <openssl/pem.h>
71 #include <openssl/evp.h>
72 #include <openssl/rand.h>
73 #ifndef OPENSSL_NO_RSA
74 # include <openssl/rsa.h>
75 #endif
76 #ifndef OPENSSL_NO_DSA
77 # include <openssl/dsa.h>
78 #endif
79 #ifndef OPENSSL_NO_DH
80 # include <openssl/dh.h>
81 #endif
82
83 #include <openssl/hmac.h>
84 #include <openssl/x509v3.h>
85
86 /*
87  * This testing gunk is implemented (and explained) lower down. It also
88  * assumes the application explicitly calls "ENGINE_load_openssl()" because
89  * this is no longer automatic in ENGINE_load_builtin_engines().
90  */
91 #define TEST_ENG_OPENSSL_RC4
92 #ifndef OPENSSL_NO_STDIO
93 #define TEST_ENG_OPENSSL_PKEY
94 #endif
95 /* #define TEST_ENG_OPENSSL_HMAC */
96 /* #define TEST_ENG_OPENSSL_HMAC_INIT */
97 /* #define TEST_ENG_OPENSSL_RC4_OTHERS */
98 #define TEST_ENG_OPENSSL_RC4_P_INIT
99 /* #define TEST_ENG_OPENSSL_RC4_P_CIPHER */
100 #define TEST_ENG_OPENSSL_SHA
101 /* #define TEST_ENG_OPENSSL_SHA_OTHERS */
102 /* #define TEST_ENG_OPENSSL_SHA_P_INIT */
103 /* #define TEST_ENG_OPENSSL_SHA_P_UPDATE */
104 /* #define TEST_ENG_OPENSSL_SHA_P_FINAL */
105
106 /* Now check what of those algorithms are actually enabled */
107 #ifdef OPENSSL_NO_RC4
108 # undef TEST_ENG_OPENSSL_RC4
109 # undef TEST_ENG_OPENSSL_RC4_OTHERS
110 # undef TEST_ENG_OPENSSL_RC4_P_INIT
111 # undef TEST_ENG_OPENSSL_RC4_P_CIPHER
112 #endif
113
114 #ifdef TEST_ENG_OPENSSL_RC4
115 static int openssl_ciphers(ENGINE *e, const EVP_CIPHER **cipher,
116                            const int **nids, int nid);
117 #endif
118 #ifdef TEST_ENG_OPENSSL_SHA
119 static int openssl_digests(ENGINE *e, const EVP_MD **digest,
120                            const int **nids, int nid);
121 #endif
122
123 #ifdef TEST_ENG_OPENSSL_PKEY
124 static EVP_PKEY *openssl_load_privkey(ENGINE *eng, const char *key_id,
125                                       UI_METHOD *ui_method,
126                                       void *callback_data);
127 #endif
128
129 #ifdef TEST_ENG_OPENSSL_HMAC
130 static int ossl_register_hmac_meth(void);
131 static int ossl_pkey_meths(ENGINE *e, EVP_PKEY_METHOD **pmeth,
132                            const int **nids, int nid);
133 #endif
134
135 /* The constants used when creating the ENGINE */
136 static const char *engine_openssl_id = "openssl";
137 static const char *engine_openssl_name = "Software engine support";
138
139 /*
140  * This internal function is used by ENGINE_openssl() and possibly by the
141  * "dynamic" ENGINE support too
142  */
143 static int bind_helper(ENGINE *e)
144 {
145     if (!ENGINE_set_id(e, engine_openssl_id)
146         || !ENGINE_set_name(e, engine_openssl_name)
147 #ifndef TEST_ENG_OPENSSL_NO_ALGORITHMS
148 # ifndef OPENSSL_NO_RSA
149         || !ENGINE_set_RSA(e, RSA_get_default_method())
150 # endif
151 # ifndef OPENSSL_NO_DSA
152         || !ENGINE_set_DSA(e, DSA_get_default_method())
153 # endif
154 # ifndef OPENSSL_NO_EC
155         || !ENGINE_set_ECDH(e, ECDH_OpenSSL())
156         || !ENGINE_set_ECDSA(e, ECDSA_OpenSSL())
157 # endif
158 # ifndef OPENSSL_NO_DH
159         || !ENGINE_set_DH(e, DH_get_default_method())
160 # endif
161         || !ENGINE_set_RAND(e, RAND_OpenSSL())
162 # ifdef TEST_ENG_OPENSSL_RC4
163         || !ENGINE_set_ciphers(e, openssl_ciphers)
164 # endif
165 # ifdef TEST_ENG_OPENSSL_SHA
166         || !ENGINE_set_digests(e, openssl_digests)
167 # endif
168 #endif
169 #ifdef TEST_ENG_OPENSSL_PKEY
170         || !ENGINE_set_load_privkey_function(e, openssl_load_privkey)
171 #endif
172 #ifdef TEST_ENG_OPENSSL_HMAC
173         || !ossl_register_hmac_meth()
174         || !ENGINE_set_pkey_meths(e, ossl_pkey_meths)
175 #endif
176         )
177         return 0;
178     /*
179      * If we add errors to this ENGINE, ensure the error handling is setup
180      * here
181      */
182     /* openssl_load_error_strings(); */
183     return 1;
184 }
185
186 static ENGINE *engine_openssl(void)
187 {
188     ENGINE *ret = ENGINE_new();
189     if (ret == NULL)
190         return NULL;
191     if (!bind_helper(ret)) {
192         ENGINE_free(ret);
193         return NULL;
194     }
195     return ret;
196 }
197
198 void ENGINE_load_openssl(void)
199 {
200     ENGINE *toadd = engine_openssl();
201     if (!toadd)
202         return;
203     ENGINE_add(toadd);
204     /*
205      * If the "add" worked, it gets a structural reference. So either way, we
206      * release our just-created reference.
207      */
208     ENGINE_free(toadd);
209     ERR_clear_error();
210 }
211
212 /*
213  * This stuff is needed if this ENGINE is being compiled into a
214  * self-contained shared-library.
215  */
216 #ifdef ENGINE_DYNAMIC_SUPPORT
217 static int bind_fn(ENGINE *e, const char *id)
218 {
219     if (id && (strcmp(id, engine_openssl_id) != 0))
220         return 0;
221     if (!bind_helper(e))
222         return 0;
223     return 1;
224 }
225
226 IMPLEMENT_DYNAMIC_CHECK_FN()
227     IMPLEMENT_DYNAMIC_BIND_FN(bind_fn)
228 #endif                          /* ENGINE_DYNAMIC_SUPPORT */
229 #ifdef TEST_ENG_OPENSSL_RC4
230 /*-
231  * This section of code compiles an "alternative implementation" of two modes of
232  * RC4 into this ENGINE. The result is that EVP_CIPHER operation for "rc4"
233  * should under normal circumstances go via this support rather than the default
234  * EVP support. There are other symbols to tweak the testing;
235  *    TEST_ENC_OPENSSL_RC4_OTHERS - print a one line message to stderr each time
236  *        we're asked for a cipher we don't support (should not happen).
237  *    TEST_ENG_OPENSSL_RC4_P_INIT - print a one line message to stderr each time
238  *        the "init_key" handler is called.
239  *    TEST_ENG_OPENSSL_RC4_P_CIPHER - ditto for the "cipher" handler.
240  */
241 # include <openssl/rc4.h>
242 # define TEST_RC4_KEY_SIZE               16
243 static const int test_cipher_nids[] = { NID_rc4, NID_rc4_40 };
244
245 static const int test_cipher_nids_number = 2;
246 typedef struct {
247     unsigned char key[TEST_RC4_KEY_SIZE];
248     RC4_KEY ks;
249 } TEST_RC4_KEY;
250 # define test(ctx) ((TEST_RC4_KEY *)(ctx)->cipher_data)
251 static int test_rc4_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
252                              const unsigned char *iv, int enc)
253 {
254 # ifdef TEST_ENG_OPENSSL_RC4_P_INIT
255     fprintf(stderr, "(TEST_ENG_OPENSSL_RC4) test_init_key() called\n");
256 # endif
257     memcpy(&test(ctx)->key[0], key, EVP_CIPHER_CTX_key_length(ctx));
258     RC4_set_key(&test(ctx)->ks, EVP_CIPHER_CTX_key_length(ctx),
259                 test(ctx)->key);
260     return 1;
261 }
262
263 static int test_rc4_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
264                            const unsigned char *in, size_t inl)
265 {
266 # ifdef TEST_ENG_OPENSSL_RC4_P_CIPHER
267     fprintf(stderr, "(TEST_ENG_OPENSSL_RC4) test_cipher() called\n");
268 # endif
269     RC4(&test(ctx)->ks, inl, in, out);
270     return 1;
271 }
272
273 static const EVP_CIPHER test_r4_cipher = {
274     NID_rc4,
275     1, TEST_RC4_KEY_SIZE, 0,
276     EVP_CIPH_VARIABLE_LENGTH,
277     test_rc4_init_key,
278     test_rc4_cipher,
279     NULL,
280     sizeof(TEST_RC4_KEY),
281     NULL,
282     NULL,
283     NULL,
284     NULL
285 };
286
287 static const EVP_CIPHER test_r4_40_cipher = {
288     NID_rc4_40,
289     1, 5 /* 40 bit */ , 0,
290     EVP_CIPH_VARIABLE_LENGTH,
291     test_rc4_init_key,
292     test_rc4_cipher,
293     NULL,
294     sizeof(TEST_RC4_KEY),
295     NULL,
296     NULL,
297     NULL,
298     NULL
299 };
300
301 static int openssl_ciphers(ENGINE *e, const EVP_CIPHER **cipher,
302                            const int **nids, int nid)
303 {
304     if (!cipher) {
305         /* We are returning a list of supported nids */
306         *nids = test_cipher_nids;
307         return test_cipher_nids_number;
308     }
309     /* We are being asked for a specific cipher */
310     if (nid == NID_rc4)
311         *cipher = &test_r4_cipher;
312     else if (nid == NID_rc4_40)
313         *cipher = &test_r4_40_cipher;
314     else {
315 # ifdef TEST_ENG_OPENSSL_RC4_OTHERS
316         fprintf(stderr, "(TEST_ENG_OPENSSL_RC4) returning NULL for "
317                 "nid %d\n", nid);
318 # endif
319         *cipher = NULL;
320         return 0;
321     }
322     return 1;
323 }
324 #endif
325
326 #ifdef TEST_ENG_OPENSSL_SHA
327 /* Much the same sort of comment as for TEST_ENG_OPENSSL_RC4 */
328 # include <openssl/sha.h>
329 static const int test_digest_nids[] = { NID_sha1 };
330
331 static const int test_digest_nids_number = 1;
332 static int test_sha1_init(EVP_MD_CTX *ctx)
333 {
334 # ifdef TEST_ENG_OPENSSL_SHA_P_INIT
335     fprintf(stderr, "(TEST_ENG_OPENSSL_SHA) test_sha1_init() called\n");
336 # endif
337     return SHA1_Init(ctx->md_data);
338 }
339
340 static int test_sha1_update(EVP_MD_CTX *ctx, const void *data, size_t count)
341 {
342 # ifdef TEST_ENG_OPENSSL_SHA_P_UPDATE
343     fprintf(stderr, "(TEST_ENG_OPENSSL_SHA) test_sha1_update() called\n");
344 # endif
345     return SHA1_Update(ctx->md_data, data, count);
346 }
347
348 static int test_sha1_final(EVP_MD_CTX *ctx, unsigned char *md)
349 {
350 # ifdef TEST_ENG_OPENSSL_SHA_P_FINAL
351     fprintf(stderr, "(TEST_ENG_OPENSSL_SHA) test_sha1_final() called\n");
352 # endif
353     return SHA1_Final(md, ctx->md_data);
354 }
355
356 static const EVP_MD test_sha_md = {
357     NID_sha1,
358     NID_sha1WithRSAEncryption,
359     SHA_DIGEST_LENGTH,
360     0,
361     test_sha1_init,
362     test_sha1_update,
363     test_sha1_final,
364     NULL,
365     NULL,
366     SHA_CBLOCK,
367     sizeof(EVP_MD *) + sizeof(SHA_CTX),
368 };
369
370 static int openssl_digests(ENGINE *e, const EVP_MD **digest,
371                            const int **nids, int nid)
372 {
373     if (!digest) {
374         /* We are returning a list of supported nids */
375         *nids = test_digest_nids;
376         return test_digest_nids_number;
377     }
378     /* We are being asked for a specific digest */
379     if (nid == NID_sha1)
380         *digest = &test_sha_md;
381     else {
382 # ifdef TEST_ENG_OPENSSL_SHA_OTHERS
383         fprintf(stderr, "(TEST_ENG_OPENSSL_SHA) returning NULL for "
384                 "nid %d\n", nid);
385 # endif
386         *digest = NULL;
387         return 0;
388     }
389     return 1;
390 }
391 #endif
392
393 #ifdef TEST_ENG_OPENSSL_PKEY
394 static EVP_PKEY *openssl_load_privkey(ENGINE *eng, const char *key_id,
395                                       UI_METHOD *ui_method,
396                                       void *callback_data)
397 {
398     BIO *in;
399     EVP_PKEY *key;
400     fprintf(stderr, "(TEST_ENG_OPENSSL_PKEY)Loading Private key %s\n",
401             key_id);
402     in = BIO_new_file(key_id, "r");
403     if (!in)
404         return NULL;
405     key = PEM_read_bio_PrivateKey(in, NULL, 0, NULL);
406     BIO_free(in);
407     return key;
408 }
409 #endif
410
411 #ifdef TEST_ENG_OPENSSL_HMAC
412
413 /*
414  * Experimental HMAC redirection implementation: mainly copied from
415  * hm_pmeth.c
416  */
417
418 /* HMAC pkey context structure */
419
420 typedef struct {
421     const EVP_MD *md;           /* MD for HMAC use */
422     ASN1_OCTET_STRING ktmp;     /* Temp storage for key */
423     HMAC_CTX ctx;
424 } OSSL_HMAC_PKEY_CTX;
425
426 static int ossl_hmac_init(EVP_PKEY_CTX *ctx)
427 {
428     OSSL_HMAC_PKEY_CTX *hctx;
429
430     hctx = OPENSSL_zalloc(sizeof(*hctx));
431     if (hctx == NULL)
432         return 0;
433     hctx->ktmp.type = V_ASN1_OCTET_STRING;
434     HMAC_CTX_init(&hctx->ctx);
435     EVP_PKEY_CTX_set_data(ctx, hctx);
436     EVP_PKEY_CTX_set0_keygen_info(ctx, NULL, 0);
437 # ifdef TEST_ENG_OPENSSL_HMAC_INIT
438     fprintf(stderr, "(TEST_ENG_OPENSSL_HMAC) ossl_hmac_init() called\n");
439 # endif
440     return 1;
441 }
442
443 static int ossl_hmac_copy(EVP_PKEY_CTX *dst, EVP_PKEY_CTX *src)
444 {
445     OSSL_HMAC_PKEY_CTX *sctx, *dctx;
446     if (!ossl_hmac_init(dst))
447         return 0;
448     sctx = EVP_PKEY_CTX_get_data(src);
449     dctx = EVP_PKEY_CTX_get_data(dst);
450     dctx->md = sctx->md;
451     HMAC_CTX_init(&dctx->ctx);
452     if (!HMAC_CTX_copy(&dctx->ctx, &sctx->ctx))
453         return 0;
454     if (sctx->ktmp.data) {
455         if (!ASN1_OCTET_STRING_set(&dctx->ktmp,
456                                    sctx->ktmp.data, sctx->ktmp.length))
457             return 0;
458     }
459     return 1;
460 }
461
462 static void ossl_hmac_cleanup(EVP_PKEY_CTX *ctx)
463 {
464     OSSL_HMAC_PKEY_CTX *hctx = EVP_PKEY_CTX_get_data(ctx);
465
466     HMAC_CTX_cleanup(&hctx->ctx);
467     OPENSSL_clear_free(hctx->ktmp.data, hctx->ktmp.length);
468     OPENSSL_free(hctx);
469 }
470
471 static int ossl_hmac_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)
472 {
473     ASN1_OCTET_STRING *hkey = NULL;
474     OSSL_HMAC_PKEY_CTX *hctx = EVP_PKEY_CTX_get_data(ctx);
475     if (!hctx->ktmp.data)
476         return 0;
477     hkey = ASN1_OCTET_STRING_dup(&hctx->ktmp);
478     if (!hkey)
479         return 0;
480     EVP_PKEY_assign(pkey, EVP_PKEY_HMAC, hkey);
481
482     return 1;
483 }
484
485 static int ossl_int_update(EVP_MD_CTX *ctx, const void *data, size_t count)
486 {
487     OSSL_HMAC_PKEY_CTX *hctx = EVP_PKEY_CTX_get_data(ctx->pctx);
488     if (!HMAC_Update(&hctx->ctx, data, count))
489         return 0;
490     return 1;
491 }
492
493 static int ossl_hmac_signctx_init(EVP_PKEY_CTX *ctx, EVP_MD_CTX *mctx)
494 {
495     EVP_MD_CTX_set_flags(mctx, EVP_MD_CTX_FLAG_NO_INIT);
496     mctx->update = ossl_int_update;
497     return 1;
498 }
499
500 static int ossl_hmac_signctx(EVP_PKEY_CTX *ctx, unsigned char *sig,
501                              size_t *siglen, EVP_MD_CTX *mctx)
502 {
503     unsigned int hlen;
504     OSSL_HMAC_PKEY_CTX *hctx = EVP_PKEY_CTX_get_data(ctx);
505     int l = EVP_MD_CTX_size(mctx);
506
507     if (l < 0)
508         return 0;
509     *siglen = l;
510     if (!sig)
511         return 1;
512
513     if (!HMAC_Final(&hctx->ctx, sig, &hlen))
514         return 0;
515     *siglen = (size_t)hlen;
516     return 1;
517 }
518
519 static int ossl_hmac_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2)
520 {
521     OSSL_HMAC_PKEY_CTX *hctx = EVP_PKEY_CTX_get_data(ctx);
522     EVP_PKEY *pk;
523     ASN1_OCTET_STRING *key;
524     switch (type) {
525
526     case EVP_PKEY_CTRL_SET_MAC_KEY:
527         if ((!p2 && p1 > 0) || (p1 < -1))
528             return 0;
529         if (!ASN1_OCTET_STRING_set(&hctx->ktmp, p2, p1))
530             return 0;
531         break;
532
533     case EVP_PKEY_CTRL_MD:
534         hctx->md = p2;
535         break;
536
537     case EVP_PKEY_CTRL_DIGESTINIT:
538         pk = EVP_PKEY_CTX_get0_pkey(ctx);
539         key = EVP_PKEY_get0(pk);
540         if (!HMAC_Init_ex(&hctx->ctx, key->data, key->length, hctx->md, NULL))
541             return 0;
542         break;
543
544     default:
545         return -2;
546
547     }
548     return 1;
549 }
550
551 static int ossl_hmac_ctrl_str(EVP_PKEY_CTX *ctx,
552                               const char *type, const char *value)
553 {
554     if (!value) {
555         return 0;
556     }
557     if (strcmp(type, "key") == 0) {
558         void *p = (void *)value;
559         return ossl_hmac_ctrl(ctx, EVP_PKEY_CTRL_SET_MAC_KEY, -1, p);
560     }
561     if (strcmp(type, "hexkey") == 0) {
562         unsigned char *key;
563         int r;
564         long keylen;
565         key = string_to_hex(value, &keylen);
566         if (!key)
567             return 0;
568         r = ossl_hmac_ctrl(ctx, EVP_PKEY_CTRL_SET_MAC_KEY, keylen, key);
569         OPENSSL_free(key);
570         return r;
571     }
572     return -2;
573 }
574
575 static EVP_PKEY_METHOD *ossl_hmac_meth;
576
577 static int ossl_register_hmac_meth(void)
578 {
579     EVP_PKEY_METHOD *meth;
580     meth = EVP_PKEY_meth_new(EVP_PKEY_HMAC, 0);
581     if (meth == NULL)
582         return 0;
583     EVP_PKEY_meth_set_init(meth, ossl_hmac_init);
584     EVP_PKEY_meth_set_copy(meth, ossl_hmac_copy);
585     EVP_PKEY_meth_set_cleanup(meth, ossl_hmac_cleanup);
586
587     EVP_PKEY_meth_set_keygen(meth, 0, ossl_hmac_keygen);
588
589     EVP_PKEY_meth_set_signctx(meth, ossl_hmac_signctx_init,
590                               ossl_hmac_signctx);
591
592     EVP_PKEY_meth_set_ctrl(meth, ossl_hmac_ctrl, ossl_hmac_ctrl_str);
593     ossl_hmac_meth = meth;
594     return 1;
595 }
596
597 static int ossl_pkey_meths(ENGINE *e, EVP_PKEY_METHOD **pmeth,
598                            const int **nids, int nid)
599 {
600     static int ossl_pkey_nids[] = {
601         EVP_PKEY_HMAC,
602         0
603     };
604     if (!pmeth) {
605         *nids = ossl_pkey_nids;
606         return 1;
607     }
608
609     if (nid == EVP_PKEY_HMAC) {
610         *pmeth = ossl_hmac_meth;
611         return 1;
612     }
613
614     *pmeth = NULL;
615     return 0;
616 }
617
618 #endif