remove ECDH_METHOD from ENGINE
[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 static int openssl_destroy(ENGINE *e);
115
116 #ifdef TEST_ENG_OPENSSL_RC4
117 static int openssl_ciphers(ENGINE *e, const EVP_CIPHER **cipher,
118                            const int **nids, int nid);
119 #endif
120 #ifdef TEST_ENG_OPENSSL_SHA
121 static int openssl_digests(ENGINE *e, const EVP_MD **digest,
122                            const int **nids, int nid);
123 #endif
124
125 #ifdef TEST_ENG_OPENSSL_PKEY
126 static EVP_PKEY *openssl_load_privkey(ENGINE *eng, const char *key_id,
127                                       UI_METHOD *ui_method,
128                                       void *callback_data);
129 #endif
130
131 #ifdef TEST_ENG_OPENSSL_HMAC
132 static int ossl_register_hmac_meth(void);
133 static int ossl_pkey_meths(ENGINE *e, EVP_PKEY_METHOD **pmeth,
134                            const int **nids, int nid);
135 #endif
136
137 /* The constants used when creating the ENGINE */
138 static const char *engine_openssl_id = "openssl";
139 static const char *engine_openssl_name = "Software engine support";
140
141 /*
142  * This internal function is used by ENGINE_openssl() and possibly by the
143  * "dynamic" ENGINE support too
144  */
145 static int bind_helper(ENGINE *e)
146 {
147     if (!ENGINE_set_id(e, engine_openssl_id)
148         || !ENGINE_set_name(e, engine_openssl_name)
149         || !ENGINE_set_destroy_function(e, openssl_destroy)
150 #ifndef TEST_ENG_OPENSSL_NO_ALGORITHMS
151 # ifndef OPENSSL_NO_RSA
152         || !ENGINE_set_RSA(e, RSA_get_default_method())
153 # endif
154 # ifndef OPENSSL_NO_DSA
155         || !ENGINE_set_DSA(e, DSA_get_default_method())
156 # endif
157 # ifndef OPENSSL_NO_EC
158         || !ENGINE_set_ECDSA(e, ECDSA_OpenSSL())
159 # endif
160 # ifndef OPENSSL_NO_DH
161         || !ENGINE_set_DH(e, DH_get_default_method())
162 # endif
163         || !ENGINE_set_RAND(e, RAND_OpenSSL())
164 # ifdef TEST_ENG_OPENSSL_RC4
165         || !ENGINE_set_ciphers(e, openssl_ciphers)
166 # endif
167 # ifdef TEST_ENG_OPENSSL_SHA
168         || !ENGINE_set_digests(e, openssl_digests)
169 # endif
170 #endif
171 #ifdef TEST_ENG_OPENSSL_PKEY
172         || !ENGINE_set_load_privkey_function(e, openssl_load_privkey)
173 #endif
174 #ifdef TEST_ENG_OPENSSL_HMAC
175         || !ossl_register_hmac_meth()
176         || !ENGINE_set_pkey_meths(e, ossl_pkey_meths)
177 #endif
178         )
179         return 0;
180     /*
181      * If we add errors to this ENGINE, ensure the error handling is setup
182      * here
183      */
184     /* openssl_load_error_strings(); */
185     return 1;
186 }
187
188 static ENGINE *engine_openssl(void)
189 {
190     ENGINE *ret = ENGINE_new();
191     if (ret == NULL)
192         return NULL;
193     if (!bind_helper(ret)) {
194         ENGINE_free(ret);
195         return NULL;
196     }
197     return ret;
198 }
199
200 void ENGINE_load_openssl(void)
201 {
202     ENGINE *toadd = engine_openssl();
203     if (!toadd)
204         return;
205     ENGINE_add(toadd);
206     /*
207      * If the "add" worked, it gets a structural reference. So either way, we
208      * release our just-created reference.
209      */
210     ENGINE_free(toadd);
211     ERR_clear_error();
212 }
213
214 /*
215  * This stuff is needed if this ENGINE is being compiled into a
216  * self-contained shared-library.
217  */
218 #ifdef ENGINE_DYNAMIC_SUPPORT
219 static int bind_fn(ENGINE *e, const char *id)
220 {
221     if (id && (strcmp(id, engine_openssl_id) != 0))
222         return 0;
223     if (!bind_helper(e))
224         return 0;
225     return 1;
226 }
227
228 IMPLEMENT_DYNAMIC_CHECK_FN()
229     IMPLEMENT_DYNAMIC_BIND_FN(bind_fn)
230 #endif                          /* ENGINE_DYNAMIC_SUPPORT */
231 #ifdef TEST_ENG_OPENSSL_RC4
232 /*-
233  * This section of code compiles an "alternative implementation" of two modes of
234  * RC4 into this ENGINE. The result is that EVP_CIPHER operation for "rc4"
235  * should under normal circumstances go via this support rather than the default
236  * EVP support. There are other symbols to tweak the testing;
237  *    TEST_ENC_OPENSSL_RC4_OTHERS - print a one line message to stderr each time
238  *        we're asked for a cipher we don't support (should not happen).
239  *    TEST_ENG_OPENSSL_RC4_P_INIT - print a one line message to stderr each time
240  *        the "init_key" handler is called.
241  *    TEST_ENG_OPENSSL_RC4_P_CIPHER - ditto for the "cipher" handler.
242  */
243 # include <openssl/rc4.h>
244 # define TEST_RC4_KEY_SIZE               16
245 static const int test_cipher_nids[] = { NID_rc4, NID_rc4_40 };
246
247 static const int test_cipher_nids_number = 2;
248 typedef struct {
249     unsigned char key[TEST_RC4_KEY_SIZE];
250     RC4_KEY ks;
251 } TEST_RC4_KEY;
252 # define test(ctx) ((TEST_RC4_KEY *)(ctx)->cipher_data)
253 static int test_rc4_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
254                              const unsigned char *iv, int enc)
255 {
256 # ifdef TEST_ENG_OPENSSL_RC4_P_INIT
257     fprintf(stderr, "(TEST_ENG_OPENSSL_RC4) test_init_key() called\n");
258 # endif
259     memcpy(&test(ctx)->key[0], key, EVP_CIPHER_CTX_key_length(ctx));
260     RC4_set_key(&test(ctx)->ks, EVP_CIPHER_CTX_key_length(ctx),
261                 test(ctx)->key);
262     return 1;
263 }
264
265 static int test_rc4_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
266                            const unsigned char *in, size_t inl)
267 {
268 # ifdef TEST_ENG_OPENSSL_RC4_P_CIPHER
269     fprintf(stderr, "(TEST_ENG_OPENSSL_RC4) test_cipher() called\n");
270 # endif
271     RC4(&test(ctx)->ks, inl, in, out);
272     return 1;
273 }
274
275 static const EVP_CIPHER test_r4_cipher = {
276     NID_rc4,
277     1, TEST_RC4_KEY_SIZE, 0,
278     EVP_CIPH_VARIABLE_LENGTH,
279     test_rc4_init_key,
280     test_rc4_cipher,
281     NULL,
282     sizeof(TEST_RC4_KEY),
283     NULL,
284     NULL,
285     NULL,
286     NULL
287 };
288
289 static const EVP_CIPHER test_r4_40_cipher = {
290     NID_rc4_40,
291     1, 5 /* 40 bit */ , 0,
292     EVP_CIPH_VARIABLE_LENGTH,
293     test_rc4_init_key,
294     test_rc4_cipher,
295     NULL,
296     sizeof(TEST_RC4_KEY),
297     NULL,
298     NULL,
299     NULL,
300     NULL
301 };
302
303 static int openssl_ciphers(ENGINE *e, const EVP_CIPHER **cipher,
304                            const int **nids, int nid)
305 {
306     if (!cipher) {
307         /* We are returning a list of supported nids */
308         *nids = test_cipher_nids;
309         return test_cipher_nids_number;
310     }
311     /* We are being asked for a specific cipher */
312     if (nid == NID_rc4)
313         *cipher = &test_r4_cipher;
314     else if (nid == NID_rc4_40)
315         *cipher = &test_r4_40_cipher;
316     else {
317 # ifdef TEST_ENG_OPENSSL_RC4_OTHERS
318         fprintf(stderr, "(TEST_ENG_OPENSSL_RC4) returning NULL for "
319                 "nid %d\n", nid);
320 # endif
321         *cipher = NULL;
322         return 0;
323     }
324     return 1;
325 }
326 #endif
327
328 #ifdef TEST_ENG_OPENSSL_SHA
329 /* Much the same sort of comment as for TEST_ENG_OPENSSL_RC4 */
330 # include <openssl/sha.h>
331
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(EVP_MD_CTX_md_data(ctx));
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(EVP_MD_CTX_md_data(ctx), 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, EVP_MD_CTX_md_data(ctx));
354 }
355
356 static EVP_MD *sha1_md = NULL;
357 static const EVP_MD *test_sha_md(void)
358 {
359     if (sha1_md == NULL) {
360         EVP_MD *md;
361
362         if ((md = EVP_MD_meth_new(NID_sha1, NID_sha1WithRSAEncryption)) == NULL
363             || !EVP_MD_meth_set_result_size(md, SHA_DIGEST_LENGTH)
364             || !EVP_MD_meth_set_input_blocksize(md, SHA_CBLOCK)
365             || !EVP_MD_meth_set_app_datasize(md,
366                                              sizeof(EVP_MD *) + sizeof(SHA_CTX))
367             || !EVP_MD_meth_set_flags(md, 0)
368             || !EVP_MD_meth_set_init(md, test_sha1_init)
369             || !EVP_MD_meth_set_update(md, test_sha1_update)
370             || !EVP_MD_meth_set_final(md, test_sha1_final)) {
371             EVP_MD_meth_free(md);
372             md = NULL;
373         }
374         sha1_md = md;
375     }
376     return sha1_md;
377 }
378 static void test_sha_md_destroy(void)
379 {
380     EVP_MD_meth_free(sha1_md);
381     sha1_md = NULL;
382 }
383 static int test_digest_nids(const int **nids)
384 {
385     static int digest_nids[2] = { 0, 0 };
386     static int pos = 0;
387     static int init = 0;
388
389     if (!init) {
390         const EVP_MD *md;
391         if ((md = test_sha_md()) != NULL)
392             digest_nids[pos++] = EVP_MD_type(md);
393         digest_nids[pos] = 0;
394         init = 1;
395     }
396     *nids = digest_nids;
397     return pos;
398 }
399
400 static int openssl_digests(ENGINE *e, const EVP_MD **digest,
401                            const int **nids, int nid)
402 {
403     if (!digest) {
404         /* We are returning a list of supported nids */
405         return test_digest_nids(nids);
406     }
407     /* We are being asked for a specific digest */
408     if (nid == NID_sha1)
409         *digest = test_sha_md();
410     else {
411 # ifdef TEST_ENG_OPENSSL_SHA_OTHERS
412         fprintf(stderr, "(TEST_ENG_OPENSSL_SHA) returning NULL for "
413                 "nid %d\n", nid);
414 # endif
415         *digest = NULL;
416         return 0;
417     }
418     return 1;
419 }
420 #endif
421
422 #ifdef TEST_ENG_OPENSSL_PKEY
423 static EVP_PKEY *openssl_load_privkey(ENGINE *eng, const char *key_id,
424                                       UI_METHOD *ui_method,
425                                       void *callback_data)
426 {
427     BIO *in;
428     EVP_PKEY *key;
429     fprintf(stderr, "(TEST_ENG_OPENSSL_PKEY)Loading Private key %s\n",
430             key_id);
431     in = BIO_new_file(key_id, "r");
432     if (!in)
433         return NULL;
434     key = PEM_read_bio_PrivateKey(in, NULL, 0, NULL);
435     BIO_free(in);
436     return key;
437 }
438 #endif
439
440 #ifdef TEST_ENG_OPENSSL_HMAC
441
442 /*
443  * Experimental HMAC redirection implementation: mainly copied from
444  * hm_pmeth.c
445  */
446
447 /* HMAC pkey context structure */
448
449 typedef struct {
450     const EVP_MD *md;           /* MD for HMAC use */
451     ASN1_OCTET_STRING ktmp;     /* Temp storage for key */
452     HMAC_CTX *ctx;
453 } OSSL_HMAC_PKEY_CTX;
454
455 static int ossl_hmac_init(EVP_PKEY_CTX *ctx)
456 {
457     OSSL_HMAC_PKEY_CTX *hctx;
458
459     hctx = OPENSSL_zalloc(sizeof(*hctx));
460     if (hctx == NULL)
461         return 0;
462     hctx->ktmp.type = V_ASN1_OCTET_STRING;
463     hctx->ctx = HMAC_CTX_new();
464     EVP_PKEY_CTX_set_data(ctx, hctx);
465     EVP_PKEY_CTX_set0_keygen_info(ctx, NULL, 0);
466 # ifdef TEST_ENG_OPENSSL_HMAC_INIT
467     fprintf(stderr, "(TEST_ENG_OPENSSL_HMAC) ossl_hmac_init() called\n");
468 # endif
469     return 1;
470 }
471
472 static int ossl_hmac_copy(EVP_PKEY_CTX *dst, EVP_PKEY_CTX *src)
473 {
474     OSSL_HMAC_PKEY_CTX *sctx, *dctx;
475     if (!ossl_hmac_init(dst))
476         return 0;
477     sctx = EVP_PKEY_CTX_get_data(src);
478     dctx = EVP_PKEY_CTX_get_data(dst);
479     dctx->md = sctx->md;
480     if (!HMAC_CTX_copy(dctx->ctx, sctx->ctx))
481         return 0;
482     if (sctx->ktmp.data) {
483         if (!ASN1_OCTET_STRING_set(&dctx->ktmp,
484                                    sctx->ktmp.data, sctx->ktmp.length))
485             return 0;
486     }
487     return 1;
488 }
489
490 static void ossl_hmac_cleanup(EVP_PKEY_CTX *ctx)
491 {
492     OSSL_HMAC_PKEY_CTX *hctx = EVP_PKEY_CTX_get_data(ctx);
493
494     HMAC_CTX_free(hctx->ctx);
495     OPENSSL_clear_free(hctx->ktmp.data, hctx->ktmp.length);
496     OPENSSL_free(hctx);
497 }
498
499 static int ossl_hmac_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)
500 {
501     ASN1_OCTET_STRING *hkey = NULL;
502     OSSL_HMAC_PKEY_CTX *hctx = EVP_PKEY_CTX_get_data(ctx);
503     if (!hctx->ktmp.data)
504         return 0;
505     hkey = ASN1_OCTET_STRING_dup(&hctx->ktmp);
506     if (!hkey)
507         return 0;
508     EVP_PKEY_assign(pkey, EVP_PKEY_HMAC, hkey);
509
510     return 1;
511 }
512
513 static int ossl_int_update(EVP_MD_CTX *ctx, const void *data, size_t count)
514 {
515     OSSL_HMAC_PKEY_CTX *hctx = EVP_PKEY_CTX_get_data(EVP_MD_CTX_pkey_ctx(ctx));
516     if (!HMAC_Update(hctx->ctx, data, count))
517         return 0;
518     return 1;
519 }
520
521 static int ossl_hmac_signctx_init(EVP_PKEY_CTX *ctx, EVP_MD_CTX *mctx)
522 {
523     EVP_MD_CTX_set_flags(mctx, EVP_MD_CTX_FLAG_NO_INIT);
524     EVP_MD_CTX_set_update_fn(mctx, ossl_int_update);
525     return 1;
526 }
527
528 static int ossl_hmac_signctx(EVP_PKEY_CTX *ctx, unsigned char *sig,
529                              size_t *siglen, EVP_MD_CTX *mctx)
530 {
531     unsigned int hlen;
532     OSSL_HMAC_PKEY_CTX *hctx = EVP_PKEY_CTX_get_data(ctx);
533     int l = EVP_MD_CTX_size(mctx);
534
535     if (l < 0)
536         return 0;
537     *siglen = l;
538     if (!sig)
539         return 1;
540
541     if (!HMAC_Final(hctx->ctx, sig, &hlen))
542         return 0;
543     *siglen = (size_t)hlen;
544     return 1;
545 }
546
547 static int ossl_hmac_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2)
548 {
549     OSSL_HMAC_PKEY_CTX *hctx = EVP_PKEY_CTX_get_data(ctx);
550     EVP_PKEY *pk;
551     ASN1_OCTET_STRING *key;
552     switch (type) {
553
554     case EVP_PKEY_CTRL_SET_MAC_KEY:
555         if ((!p2 && p1 > 0) || (p1 < -1))
556             return 0;
557         if (!ASN1_OCTET_STRING_set(&hctx->ktmp, p2, p1))
558             return 0;
559         break;
560
561     case EVP_PKEY_CTRL_MD:
562         hctx->md = p2;
563         break;
564
565     case EVP_PKEY_CTRL_DIGESTINIT:
566         pk = EVP_PKEY_CTX_get0_pkey(ctx);
567         key = EVP_PKEY_get0(pk);
568         if (!HMAC_Init_ex(hctx->ctx, key->data, key->length, hctx->md, NULL))
569             return 0;
570         break;
571
572     default:
573         return -2;
574
575     }
576     return 1;
577 }
578
579 static int ossl_hmac_ctrl_str(EVP_PKEY_CTX *ctx,
580                               const char *type, const char *value)
581 {
582     if (!value) {
583         return 0;
584     }
585     if (strcmp(type, "key") == 0) {
586         void *p = (void *)value;
587         return ossl_hmac_ctrl(ctx, EVP_PKEY_CTRL_SET_MAC_KEY, -1, p);
588     }
589     if (strcmp(type, "hexkey") == 0) {
590         unsigned char *key;
591         int r;
592         long keylen;
593         key = string_to_hex(value, &keylen);
594         if (!key)
595             return 0;
596         r = ossl_hmac_ctrl(ctx, EVP_PKEY_CTRL_SET_MAC_KEY, keylen, key);
597         OPENSSL_free(key);
598         return r;
599     }
600     return -2;
601 }
602
603 static EVP_PKEY_METHOD *ossl_hmac_meth;
604
605 static int ossl_register_hmac_meth(void)
606 {
607     EVP_PKEY_METHOD *meth;
608     meth = EVP_PKEY_meth_new(EVP_PKEY_HMAC, 0);
609     if (meth == NULL)
610         return 0;
611     EVP_PKEY_meth_set_init(meth, ossl_hmac_init);
612     EVP_PKEY_meth_set_copy(meth, ossl_hmac_copy);
613     EVP_PKEY_meth_set_cleanup(meth, ossl_hmac_cleanup);
614
615     EVP_PKEY_meth_set_keygen(meth, 0, ossl_hmac_keygen);
616
617     EVP_PKEY_meth_set_signctx(meth, ossl_hmac_signctx_init,
618                               ossl_hmac_signctx);
619
620     EVP_PKEY_meth_set_ctrl(meth, ossl_hmac_ctrl, ossl_hmac_ctrl_str);
621     ossl_hmac_meth = meth;
622     return 1;
623 }
624
625 static int ossl_pkey_meths(ENGINE *e, EVP_PKEY_METHOD **pmeth,
626                            const int **nids, int nid)
627 {
628     static int ossl_pkey_nids[] = {
629         EVP_PKEY_HMAC,
630         0
631     };
632     if (!pmeth) {
633         *nids = ossl_pkey_nids;
634         return 1;
635     }
636
637     if (nid == EVP_PKEY_HMAC) {
638         *pmeth = ossl_hmac_meth;
639         return 1;
640     }
641
642     *pmeth = NULL;
643     return 0;
644 }
645
646 #endif
647
648 int openssl_destroy(ENGINE *e)
649 {
650     test_sha_md_destroy();
651     return 1;
652 }
653