dce5cccfd844769dd1a54676ffbcc4164710c47e
[openssl.git] / crypto / engine / eng_openssl.c
1 /*
2  * Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.
3  * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
4  *
5  * Licensed under the OpenSSL license (the "License").  You may not use
6  * this file except in compliance with the License.  You can obtain a copy
7  * in the file LICENSE in the source distribution or at
8  * https://www.openssl.org/source/license.html
9  */
10
11 #include <stdio.h>
12 #include <openssl/crypto.h>
13 #include "internal/cryptlib.h"
14 #include <internal/engine.h>
15 #include <openssl/pem.h>
16 #include <openssl/evp.h>
17 #include <openssl/rand.h>
18 #include <openssl/rsa.h>
19 #include <openssl/dsa.h>
20 #include <openssl/dh.h>
21
22 #include <openssl/hmac.h>
23 #include <openssl/x509v3.h>
24
25 /*
26  * This testing gunk is implemented (and explained) lower down. It also
27  * assumes the application explicitly calls "ENGINE_load_openssl()" because
28  * this is no longer automatic in ENGINE_load_builtin_engines().
29  */
30 #define TEST_ENG_OPENSSL_RC4
31 #ifndef OPENSSL_NO_STDIO
32 #define TEST_ENG_OPENSSL_PKEY
33 #endif
34 /* #define TEST_ENG_OPENSSL_HMAC */
35 /* #define TEST_ENG_OPENSSL_HMAC_INIT */
36 /* #define TEST_ENG_OPENSSL_RC4_OTHERS */
37 #define TEST_ENG_OPENSSL_RC4_P_INIT
38 /* #define TEST_ENG_OPENSSL_RC4_P_CIPHER */
39 #define TEST_ENG_OPENSSL_SHA
40 /* #define TEST_ENG_OPENSSL_SHA_OTHERS */
41 /* #define TEST_ENG_OPENSSL_SHA_P_INIT */
42 /* #define TEST_ENG_OPENSSL_SHA_P_UPDATE */
43 /* #define TEST_ENG_OPENSSL_SHA_P_FINAL */
44
45 /* Now check what of those algorithms are actually enabled */
46 #ifdef OPENSSL_NO_RC4
47 # undef TEST_ENG_OPENSSL_RC4
48 # undef TEST_ENG_OPENSSL_RC4_OTHERS
49 # undef TEST_ENG_OPENSSL_RC4_P_INIT
50 # undef TEST_ENG_OPENSSL_RC4_P_CIPHER
51 #endif
52
53 static int openssl_destroy(ENGINE *e);
54
55 #ifdef TEST_ENG_OPENSSL_RC4
56 static int openssl_ciphers(ENGINE *e, const EVP_CIPHER **cipher,
57                            const int **nids, int nid);
58 #endif
59 #ifdef TEST_ENG_OPENSSL_SHA
60 static int openssl_digests(ENGINE *e, const EVP_MD **digest,
61                            const int **nids, int nid);
62 #endif
63
64 #ifdef TEST_ENG_OPENSSL_PKEY
65 static EVP_PKEY *openssl_load_privkey(ENGINE *eng, const char *key_id,
66                                       UI_METHOD *ui_method,
67                                       void *callback_data);
68 #endif
69
70 #ifdef TEST_ENG_OPENSSL_HMAC
71 static int ossl_register_hmac_meth(void);
72 static int ossl_pkey_meths(ENGINE *e, EVP_PKEY_METHOD **pmeth,
73                            const int **nids, int nid);
74 #endif
75
76 /* The constants used when creating the ENGINE */
77 static const char *engine_openssl_id = "openssl";
78 static const char *engine_openssl_name = "Software engine support";
79
80 /*
81  * This internal function is used by ENGINE_openssl() and possibly by the
82  * "dynamic" ENGINE support too
83  */
84 static int bind_helper(ENGINE *e)
85 {
86     if (!ENGINE_set_id(e, engine_openssl_id)
87         || !ENGINE_set_name(e, engine_openssl_name)
88         || !ENGINE_set_destroy_function(e, openssl_destroy)
89 #ifndef TEST_ENG_OPENSSL_NO_ALGORITHMS
90 # ifndef OPENSSL_NO_RSA
91         || !ENGINE_set_RSA(e, RSA_get_default_method())
92 # endif
93 # ifndef OPENSSL_NO_DSA
94         || !ENGINE_set_DSA(e, DSA_get_default_method())
95 # endif
96 # ifndef OPENSSL_NO_EC
97         || !ENGINE_set_EC(e, EC_KEY_OpenSSL())
98 # endif
99 # ifndef OPENSSL_NO_DH
100         || !ENGINE_set_DH(e, DH_get_default_method())
101 # endif
102         || !ENGINE_set_RAND(e, RAND_OpenSSL())
103 # ifdef TEST_ENG_OPENSSL_RC4
104         || !ENGINE_set_ciphers(e, openssl_ciphers)
105 # endif
106 # ifdef TEST_ENG_OPENSSL_SHA
107         || !ENGINE_set_digests(e, openssl_digests)
108 # endif
109 #endif
110 #ifdef TEST_ENG_OPENSSL_PKEY
111         || !ENGINE_set_load_privkey_function(e, openssl_load_privkey)
112 #endif
113 #ifdef TEST_ENG_OPENSSL_HMAC
114         || !ossl_register_hmac_meth()
115         || !ENGINE_set_pkey_meths(e, ossl_pkey_meths)
116 #endif
117         )
118         return 0;
119     /*
120      * If we add errors to this ENGINE, ensure the error handling is setup
121      * here
122      */
123     /* openssl_load_error_strings(); */
124     return 1;
125 }
126
127 static ENGINE *engine_openssl(void)
128 {
129     ENGINE *ret = ENGINE_new();
130     if (ret == NULL)
131         return NULL;
132     if (!bind_helper(ret)) {
133         ENGINE_free(ret);
134         return NULL;
135     }
136     return ret;
137 }
138
139 void engine_load_openssl_int(void)
140 {
141     ENGINE *toadd = engine_openssl();
142     if (!toadd)
143         return;
144     ENGINE_add(toadd);
145     /*
146      * If the "add" worked, it gets a structural reference. So either way, we
147      * release our just-created reference.
148      */
149     ENGINE_free(toadd);
150     ERR_clear_error();
151 }
152
153 /*
154  * This stuff is needed if this ENGINE is being compiled into a
155  * self-contained shared-library.
156  */
157 #ifdef ENGINE_DYNAMIC_SUPPORT
158 static int bind_fn(ENGINE *e, const char *id)
159 {
160     if (id && (strcmp(id, engine_openssl_id) != 0))
161         return 0;
162     if (!bind_helper(e))
163         return 0;
164     return 1;
165 }
166
167 IMPLEMENT_DYNAMIC_CHECK_FN()
168     IMPLEMENT_DYNAMIC_BIND_FN(bind_fn)
169 #endif                          /* ENGINE_DYNAMIC_SUPPORT */
170 #ifdef TEST_ENG_OPENSSL_RC4
171 /*-
172  * This section of code compiles an "alternative implementation" of two modes of
173  * RC4 into this ENGINE. The result is that EVP_CIPHER operation for "rc4"
174  * should under normal circumstances go via this support rather than the default
175  * EVP support. There are other symbols to tweak the testing;
176  *    TEST_ENC_OPENSSL_RC4_OTHERS - print a one line message to stderr each time
177  *        we're asked for a cipher we don't support (should not happen).
178  *    TEST_ENG_OPENSSL_RC4_P_INIT - print a one line message to stderr each time
179  *        the "init_key" handler is called.
180  *    TEST_ENG_OPENSSL_RC4_P_CIPHER - ditto for the "cipher" handler.
181  */
182 # include <openssl/rc4.h>
183 # define TEST_RC4_KEY_SIZE               16
184 typedef struct {
185     unsigned char key[TEST_RC4_KEY_SIZE];
186     RC4_KEY ks;
187 } TEST_RC4_KEY;
188 # define test(ctx) ((TEST_RC4_KEY *)EVP_CIPHER_CTX_get_cipher_data(ctx))
189 static int test_rc4_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
190                              const unsigned char *iv, int enc)
191 {
192 # ifdef TEST_ENG_OPENSSL_RC4_P_INIT
193     fprintf(stderr, "(TEST_ENG_OPENSSL_RC4) test_init_key() called\n");
194 # endif
195     memcpy(&test(ctx)->key[0], key, EVP_CIPHER_CTX_key_length(ctx));
196     RC4_set_key(&test(ctx)->ks, EVP_CIPHER_CTX_key_length(ctx),
197                 test(ctx)->key);
198     return 1;
199 }
200
201 static int test_rc4_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
202                            const unsigned char *in, size_t inl)
203 {
204 # ifdef TEST_ENG_OPENSSL_RC4_P_CIPHER
205     fprintf(stderr, "(TEST_ENG_OPENSSL_RC4) test_cipher() called\n");
206 # endif
207     RC4(&test(ctx)->ks, inl, in, out);
208     return 1;
209 }
210
211 static EVP_CIPHER *r4_cipher = NULL;
212 static const EVP_CIPHER *test_r4_cipher(void)
213 {
214     if (r4_cipher == NULL) {
215         EVP_CIPHER *cipher;
216
217         if ((cipher = EVP_CIPHER_meth_new(NID_rc4, 1, TEST_RC4_KEY_SIZE)) == NULL
218             || !EVP_CIPHER_meth_set_iv_length(cipher, 0)
219             || !EVP_CIPHER_meth_set_flags(cipher, EVP_CIPH_VARIABLE_LENGTH)
220             || !EVP_CIPHER_meth_set_init(cipher, test_rc4_init_key)
221             || !EVP_CIPHER_meth_set_do_cipher(cipher, test_rc4_cipher)
222             || !EVP_CIPHER_meth_set_impl_ctx_size(cipher, sizeof(TEST_RC4_KEY))) {
223             EVP_CIPHER_meth_free(cipher);
224             cipher = NULL;
225         }
226         r4_cipher = cipher;
227     }
228     return r4_cipher;
229 }
230 static void test_r4_cipher_destroy(void)
231 {
232     EVP_CIPHER_meth_free(r4_cipher);
233     r4_cipher = NULL;
234 }
235
236 static EVP_CIPHER *r4_40_cipher = NULL;
237 static const EVP_CIPHER *test_r4_40_cipher(void)
238 {
239     if (r4_40_cipher == NULL) {
240         EVP_CIPHER *cipher;
241
242         if ((cipher = EVP_CIPHER_meth_new(NID_rc4, 1, 5 /* 40 bits */)) == NULL
243             || !EVP_CIPHER_meth_set_iv_length(cipher, 0)
244             || !EVP_CIPHER_meth_set_flags(cipher, EVP_CIPH_VARIABLE_LENGTH)
245             || !EVP_CIPHER_meth_set_init(cipher, test_rc4_init_key)
246             || !EVP_CIPHER_meth_set_do_cipher(cipher, test_rc4_cipher)
247             || !EVP_CIPHER_meth_set_impl_ctx_size(cipher, sizeof(TEST_RC4_KEY))) {
248             EVP_CIPHER_meth_free(cipher);
249             cipher = NULL;
250         }
251         r4_40_cipher = cipher;
252     }
253     return r4_40_cipher;
254 }
255 static void test_r4_40_cipher_destroy(void)
256 {
257     EVP_CIPHER_meth_free(r4_40_cipher);
258     r4_40_cipher = NULL;
259 }
260 static int test_cipher_nids(const int **nids)
261 {
262     static int cipher_nids[4] = { 0, 0, 0, 0 };
263     static int pos = 0;
264     static int init = 0;
265
266     if (!init) {
267         const EVP_CIPHER *cipher;
268         if ((cipher = test_r4_cipher()) != NULL)
269             cipher_nids[pos++] = EVP_CIPHER_nid(cipher);
270         if ((cipher = test_r4_40_cipher()) != NULL)
271             cipher_nids[pos++] = EVP_CIPHER_nid(cipher);
272         cipher_nids[pos] = 0;
273         init = 1;
274     }
275     *nids = cipher_nids;
276     return pos;
277 }
278
279 static int openssl_ciphers(ENGINE *e, const EVP_CIPHER **cipher,
280                            const int **nids, int nid)
281 {
282     if (!cipher) {
283         /* We are returning a list of supported nids */
284         return test_cipher_nids(nids);
285     }
286     /* We are being asked for a specific cipher */
287     if (nid == NID_rc4)
288         *cipher = test_r4_cipher();
289     else if (nid == NID_rc4_40)
290         *cipher = test_r4_40_cipher();
291     else {
292 # ifdef TEST_ENG_OPENSSL_RC4_OTHERS
293         fprintf(stderr, "(TEST_ENG_OPENSSL_RC4) returning NULL for "
294                 "nid %d\n", nid);
295 # endif
296         *cipher = NULL;
297         return 0;
298     }
299     return 1;
300 }
301 #endif
302
303 #ifdef TEST_ENG_OPENSSL_SHA
304 /* Much the same sort of comment as for TEST_ENG_OPENSSL_RC4 */
305 # include <openssl/sha.h>
306
307 static int test_sha1_init(EVP_MD_CTX *ctx)
308 {
309 # ifdef TEST_ENG_OPENSSL_SHA_P_INIT
310     fprintf(stderr, "(TEST_ENG_OPENSSL_SHA) test_sha1_init() called\n");
311 # endif
312     return SHA1_Init(EVP_MD_CTX_md_data(ctx));
313 }
314
315 static int test_sha1_update(EVP_MD_CTX *ctx, const void *data, size_t count)
316 {
317 # ifdef TEST_ENG_OPENSSL_SHA_P_UPDATE
318     fprintf(stderr, "(TEST_ENG_OPENSSL_SHA) test_sha1_update() called\n");
319 # endif
320     return SHA1_Update(EVP_MD_CTX_md_data(ctx), data, count);
321 }
322
323 static int test_sha1_final(EVP_MD_CTX *ctx, unsigned char *md)
324 {
325 # ifdef TEST_ENG_OPENSSL_SHA_P_FINAL
326     fprintf(stderr, "(TEST_ENG_OPENSSL_SHA) test_sha1_final() called\n");
327 # endif
328     return SHA1_Final(md, EVP_MD_CTX_md_data(ctx));
329 }
330
331 static EVP_MD *sha1_md = NULL;
332 static const EVP_MD *test_sha_md(void)
333 {
334     if (sha1_md == NULL) {
335         EVP_MD *md;
336
337         if ((md = EVP_MD_meth_new(NID_sha1, NID_sha1WithRSAEncryption)) == NULL
338             || !EVP_MD_meth_set_result_size(md, SHA_DIGEST_LENGTH)
339             || !EVP_MD_meth_set_input_blocksize(md, SHA_CBLOCK)
340             || !EVP_MD_meth_set_app_datasize(md,
341                                              sizeof(EVP_MD *) + sizeof(SHA_CTX))
342             || !EVP_MD_meth_set_flags(md, 0)
343             || !EVP_MD_meth_set_init(md, test_sha1_init)
344             || !EVP_MD_meth_set_update(md, test_sha1_update)
345             || !EVP_MD_meth_set_final(md, test_sha1_final)) {
346             EVP_MD_meth_free(md);
347             md = NULL;
348         }
349         sha1_md = md;
350     }
351     return sha1_md;
352 }
353 static void test_sha_md_destroy(void)
354 {
355     EVP_MD_meth_free(sha1_md);
356     sha1_md = NULL;
357 }
358 static int test_digest_nids(const int **nids)
359 {
360     static int digest_nids[2] = { 0, 0 };
361     static int pos = 0;
362     static int init = 0;
363
364     if (!init) {
365         const EVP_MD *md;
366         if ((md = test_sha_md()) != NULL)
367             digest_nids[pos++] = EVP_MD_type(md);
368         digest_nids[pos] = 0;
369         init = 1;
370     }
371     *nids = digest_nids;
372     return pos;
373 }
374
375 static int openssl_digests(ENGINE *e, const EVP_MD **digest,
376                            const int **nids, int nid)
377 {
378     if (!digest) {
379         /* We are returning a list of supported nids */
380         return test_digest_nids(nids);
381     }
382     /* We are being asked for a specific digest */
383     if (nid == NID_sha1)
384         *digest = test_sha_md();
385     else {
386 # ifdef TEST_ENG_OPENSSL_SHA_OTHERS
387         fprintf(stderr, "(TEST_ENG_OPENSSL_SHA) returning NULL for "
388                 "nid %d\n", nid);
389 # endif
390         *digest = NULL;
391         return 0;
392     }
393     return 1;
394 }
395 #endif
396
397 #ifdef TEST_ENG_OPENSSL_PKEY
398 static EVP_PKEY *openssl_load_privkey(ENGINE *eng, const char *key_id,
399                                       UI_METHOD *ui_method,
400                                       void *callback_data)
401 {
402     BIO *in;
403     EVP_PKEY *key;
404     fprintf(stderr, "(TEST_ENG_OPENSSL_PKEY)Loading Private key %s\n",
405             key_id);
406     in = BIO_new_file(key_id, "r");
407     if (!in)
408         return NULL;
409     key = PEM_read_bio_PrivateKey(in, NULL, 0, NULL);
410     BIO_free(in);
411     return key;
412 }
413 #endif
414
415 #ifdef TEST_ENG_OPENSSL_HMAC
416
417 /*
418  * Experimental HMAC redirection implementation: mainly copied from
419  * hm_pmeth.c
420  */
421
422 /* HMAC pkey context structure */
423
424 typedef struct {
425     const EVP_MD *md;           /* MD for HMAC use */
426     ASN1_OCTET_STRING ktmp;     /* Temp storage for key */
427     HMAC_CTX *ctx;
428 } OSSL_HMAC_PKEY_CTX;
429
430 static int ossl_hmac_init(EVP_PKEY_CTX *ctx)
431 {
432     OSSL_HMAC_PKEY_CTX *hctx;
433
434     hctx = OPENSSL_zalloc(sizeof(*hctx));
435     if (hctx == NULL)
436         return 0;
437     hctx->ktmp.type = V_ASN1_OCTET_STRING;
438     hctx->ctx = HMAC_CTX_new();
439     if (hctx->ctx == NULL) {
440         OPENSSL_free(hctx);
441         return 0;
442     }
443     EVP_PKEY_CTX_set_data(ctx, hctx);
444     EVP_PKEY_CTX_set0_keygen_info(ctx, NULL, 0);
445 # ifdef TEST_ENG_OPENSSL_HMAC_INIT
446     fprintf(stderr, "(TEST_ENG_OPENSSL_HMAC) ossl_hmac_init() called\n");
447 # endif
448     return 1;
449 }
450
451 static void ossl_hmac_cleanup(EVP_PKEY_CTX *ctx);
452
453 static int ossl_hmac_copy(EVP_PKEY_CTX *dst, EVP_PKEY_CTX *src)
454 {
455     OSSL_HMAC_PKEY_CTX *sctx, *dctx;
456
457     /* allocate memory for dst->data and a new HMAC_CTX in dst->data->ctx */
458     if (!ossl_hmac_init(dst))
459         return 0;
460     sctx = EVP_PKEY_CTX_get_data(src);
461     dctx = EVP_PKEY_CTX_get_data(dst);
462     dctx->md = sctx->md;
463     if (!HMAC_CTX_copy(dctx->ctx, sctx->ctx))
464         goto err;
465     if (sctx->ktmp.data) {
466         if (!ASN1_OCTET_STRING_set(&dctx->ktmp,
467                                    sctx->ktmp.data, sctx->ktmp.length))
468             goto err;
469     }
470     return 1;
471 err:
472     /* release HMAC_CTX in dst->data->ctx and memory allocated for dst->data */
473     ossl_hmac_cleanup(dst);
474     return 0;
475 }
476
477 static void ossl_hmac_cleanup(EVP_PKEY_CTX *ctx)
478 {
479     OSSL_HMAC_PKEY_CTX *hctx = EVP_PKEY_CTX_get_data(ctx);
480
481     if (hctx) {
482         HMAC_CTX_free(hctx->ctx);
483         OPENSSL_clear_free(hctx->ktmp.data, hctx->ktmp.length);
484         OPENSSL_free(hctx);
485         EVP_PKEY_CTX_set_data(ctx, NULL);
486     }
487 }
488
489 static int ossl_hmac_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)
490 {
491     ASN1_OCTET_STRING *hkey = NULL;
492     OSSL_HMAC_PKEY_CTX *hctx = EVP_PKEY_CTX_get_data(ctx);
493     if (!hctx->ktmp.data)
494         return 0;
495     hkey = ASN1_OCTET_STRING_dup(&hctx->ktmp);
496     if (!hkey)
497         return 0;
498     EVP_PKEY_assign(pkey, EVP_PKEY_HMAC, hkey);
499
500     return 1;
501 }
502
503 static int ossl_int_update(EVP_MD_CTX *ctx, const void *data, size_t count)
504 {
505     OSSL_HMAC_PKEY_CTX *hctx = EVP_PKEY_CTX_get_data(EVP_MD_CTX_pkey_ctx(ctx));
506     if (!HMAC_Update(hctx->ctx, data, count))
507         return 0;
508     return 1;
509 }
510
511 static int ossl_hmac_signctx_init(EVP_PKEY_CTX *ctx, EVP_MD_CTX *mctx)
512 {
513     EVP_MD_CTX_set_flags(mctx, EVP_MD_CTX_FLAG_NO_INIT);
514     EVP_MD_CTX_set_update_fn(mctx, ossl_int_update);
515     return 1;
516 }
517
518 static int ossl_hmac_signctx(EVP_PKEY_CTX *ctx, unsigned char *sig,
519                              size_t *siglen, EVP_MD_CTX *mctx)
520 {
521     unsigned int hlen;
522     OSSL_HMAC_PKEY_CTX *hctx = EVP_PKEY_CTX_get_data(ctx);
523     int l = EVP_MD_CTX_size(mctx);
524
525     if (l < 0)
526         return 0;
527     *siglen = l;
528     if (!sig)
529         return 1;
530
531     if (!HMAC_Final(hctx->ctx, sig, &hlen))
532         return 0;
533     *siglen = (size_t)hlen;
534     return 1;
535 }
536
537 static int ossl_hmac_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2)
538 {
539     OSSL_HMAC_PKEY_CTX *hctx = EVP_PKEY_CTX_get_data(ctx);
540     EVP_PKEY *pk;
541     ASN1_OCTET_STRING *key;
542     switch (type) {
543
544     case EVP_PKEY_CTRL_SET_MAC_KEY:
545         if ((!p2 && p1 > 0) || (p1 < -1))
546             return 0;
547         if (!ASN1_OCTET_STRING_set(&hctx->ktmp, p2, p1))
548             return 0;
549         break;
550
551     case EVP_PKEY_CTRL_MD:
552         hctx->md = p2;
553         break;
554
555     case EVP_PKEY_CTRL_DIGESTINIT:
556         pk = EVP_PKEY_CTX_get0_pkey(ctx);
557         key = EVP_PKEY_get0(pk);
558         if (!HMAC_Init_ex(hctx->ctx, key->data, key->length, hctx->md, NULL))
559             return 0;
560         break;
561
562     default:
563         return -2;
564
565     }
566     return 1;
567 }
568
569 static int ossl_hmac_ctrl_str(EVP_PKEY_CTX *ctx,
570                               const char *type, const char *value)
571 {
572     if (!value) {
573         return 0;
574     }
575     if (strcmp(type, "key") == 0) {
576         void *p = (void *)value;
577         return ossl_hmac_ctrl(ctx, EVP_PKEY_CTRL_SET_MAC_KEY, -1, p);
578     }
579     if (strcmp(type, "hexkey") == 0) {
580         unsigned char *key;
581         int r;
582         long keylen;
583         key = OPENSSL_hexstr2buf(value, &keylen);
584         if (!key)
585             return 0;
586         r = ossl_hmac_ctrl(ctx, EVP_PKEY_CTRL_SET_MAC_KEY, keylen, key);
587         OPENSSL_free(key);
588         return r;
589     }
590     return -2;
591 }
592
593 static EVP_PKEY_METHOD *ossl_hmac_meth;
594
595 static int ossl_register_hmac_meth(void)
596 {
597     EVP_PKEY_METHOD *meth;
598     meth = EVP_PKEY_meth_new(EVP_PKEY_HMAC, 0);
599     if (meth == NULL)
600         return 0;
601     EVP_PKEY_meth_set_init(meth, ossl_hmac_init);
602     EVP_PKEY_meth_set_copy(meth, ossl_hmac_copy);
603     EVP_PKEY_meth_set_cleanup(meth, ossl_hmac_cleanup);
604
605     EVP_PKEY_meth_set_keygen(meth, 0, ossl_hmac_keygen);
606
607     EVP_PKEY_meth_set_signctx(meth, ossl_hmac_signctx_init,
608                               ossl_hmac_signctx);
609
610     EVP_PKEY_meth_set_ctrl(meth, ossl_hmac_ctrl, ossl_hmac_ctrl_str);
611     ossl_hmac_meth = meth;
612     return 1;
613 }
614
615 static int ossl_pkey_meths(ENGINE *e, EVP_PKEY_METHOD **pmeth,
616                            const int **nids, int nid)
617 {
618     static int ossl_pkey_nids[] = {
619         EVP_PKEY_HMAC,
620         0
621     };
622     if (!pmeth) {
623         *nids = ossl_pkey_nids;
624         return 1;
625     }
626
627     if (nid == EVP_PKEY_HMAC) {
628         *pmeth = ossl_hmac_meth;
629         return 1;
630     }
631
632     *pmeth = NULL;
633     return 0;
634 }
635
636 #endif
637
638 int openssl_destroy(ENGINE *e)
639 {
640     test_sha_md_destroy();
641 #ifdef TEST_ENG_OPENSSL_RC4
642     test_r4_cipher_destroy();
643     test_r4_40_cipher_destroy();
644 #endif
645     return 1;
646 }
647