Only build the body of e_padlock when there are lower level routines
[openssl.git] / engines / e_ossltest.c
1 /*
2  * Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (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 /*
11  * This is the OSSLTEST engine. It provides deliberately crippled digest
12  * implementations for test purposes. It is highly insecure and must NOT be
13  * used for any purpose except testing
14  */
15
16 #include <stdio.h>
17 #include <string.h>
18
19 #include <openssl/engine.h>
20 #include <openssl/sha.h>
21 #include <openssl/md5.h>
22 #include <openssl/rsa.h>
23 #include <openssl/evp.h>
24 #include <openssl/modes.h>
25 #include <openssl/aes.h>
26 #include <openssl/crypto.h>
27
28 #define OSSLTEST_LIB_NAME "OSSLTEST"
29 #include "e_ossltest_err.c"
30
31 /* Engine Id and Name */
32 static const char *engine_ossltest_id = "ossltest";
33 static const char *engine_ossltest_name = "OpenSSL Test engine support";
34
35
36 /* Engine Lifetime functions */
37 static int ossltest_destroy(ENGINE *e);
38 static int ossltest_init(ENGINE *e);
39 static int ossltest_finish(ENGINE *e);
40 void ENGINE_load_ossltest(void);
41
42
43 /* Set up digests */
44 static int ossltest_digests(ENGINE *e, const EVP_MD **digest,
45                           const int **nids, int nid);
46
47 /* MD5 */
48 static int digest_md5_init(EVP_MD_CTX *ctx);
49 static int digest_md5_update(EVP_MD_CTX *ctx, const void *data,
50                              size_t count);
51 static int digest_md5_final(EVP_MD_CTX *ctx, unsigned char *md);
52
53 static EVP_MD *_hidden_md5_md = NULL;
54 static const EVP_MD *digest_md5(void)
55 {
56     if (_hidden_md5_md == NULL) {
57         EVP_MD *md;
58
59         if ((md = EVP_MD_meth_new(NID_md5, NID_md5WithRSAEncryption)) == NULL
60             || !EVP_MD_meth_set_result_size(md, MD5_DIGEST_LENGTH)
61             || !EVP_MD_meth_set_input_blocksize(md, MD5_CBLOCK)
62             || !EVP_MD_meth_set_app_datasize(md,
63                                              sizeof(EVP_MD *) + sizeof(MD5_CTX))
64             || !EVP_MD_meth_set_flags(md, 0)
65             || !EVP_MD_meth_set_init(md, digest_md5_init)
66             || !EVP_MD_meth_set_update(md, digest_md5_update)
67             || !EVP_MD_meth_set_final(md, digest_md5_final)) {
68             EVP_MD_meth_free(md);
69             md = NULL;
70         }
71         _hidden_md5_md = md;
72     }
73     return _hidden_md5_md;
74 }
75
76 /* SHA1 */
77 static int digest_sha1_init(EVP_MD_CTX *ctx);
78 static int digest_sha1_update(EVP_MD_CTX *ctx, const void *data,
79                               size_t count);
80 static int digest_sha1_final(EVP_MD_CTX *ctx, unsigned char *md);
81
82 static EVP_MD *_hidden_sha1_md = NULL;
83 static const EVP_MD *digest_sha1(void)
84 {
85     if (_hidden_sha1_md == NULL) {
86         EVP_MD *md;
87
88         if ((md = EVP_MD_meth_new(NID_sha1, NID_sha1WithRSAEncryption)) == NULL
89             || !EVP_MD_meth_set_result_size(md, SHA_DIGEST_LENGTH)
90             || !EVP_MD_meth_set_input_blocksize(md, SHA_CBLOCK)
91             || !EVP_MD_meth_set_app_datasize(md,
92                                              sizeof(EVP_MD *) + sizeof(SHA_CTX))
93             || !EVP_MD_meth_set_flags(md, EVP_MD_FLAG_DIGALGID_ABSENT)
94             || !EVP_MD_meth_set_init(md, digest_sha1_init)
95             || !EVP_MD_meth_set_update(md, digest_sha1_update)
96             || !EVP_MD_meth_set_final(md, digest_sha1_final)) {
97             EVP_MD_meth_free(md);
98             md = NULL;
99         }
100         _hidden_sha1_md = md;
101     }
102     return _hidden_sha1_md;
103 }
104
105 /* SHA256 */
106 static int digest_sha256_init(EVP_MD_CTX *ctx);
107 static int digest_sha256_update(EVP_MD_CTX *ctx, const void *data,
108                                 size_t count);
109 static int digest_sha256_final(EVP_MD_CTX *ctx, unsigned char *md);
110
111 static EVP_MD *_hidden_sha256_md = NULL;
112 static const EVP_MD *digest_sha256(void)
113 {
114     if (_hidden_sha256_md == NULL) {
115         EVP_MD *md;
116
117         if ((md = EVP_MD_meth_new(NID_sha256, NID_sha256WithRSAEncryption)) == NULL
118             || !EVP_MD_meth_set_result_size(md, SHA256_DIGEST_LENGTH)
119             || !EVP_MD_meth_set_input_blocksize(md, SHA256_CBLOCK)
120             || !EVP_MD_meth_set_app_datasize(md,
121                                              sizeof(EVP_MD *) + sizeof(SHA256_CTX))
122             || !EVP_MD_meth_set_flags(md, EVP_MD_FLAG_DIGALGID_ABSENT)
123             || !EVP_MD_meth_set_init(md, digest_sha256_init)
124             || !EVP_MD_meth_set_update(md, digest_sha256_update)
125             || !EVP_MD_meth_set_final(md, digest_sha256_final)) {
126             EVP_MD_meth_free(md);
127             md = NULL;
128         }
129         _hidden_sha256_md = md;
130     }
131     return _hidden_sha256_md;
132 }
133
134 /* SHA384/SHA512 */
135 static int digest_sha384_init(EVP_MD_CTX *ctx);
136 static int digest_sha512_init(EVP_MD_CTX *ctx);
137 static int digest_sha512_update(EVP_MD_CTX *ctx, const void *data,
138                                 size_t count);
139 static int digest_sha384_final(EVP_MD_CTX *ctx, unsigned char *md);
140 static int digest_sha512_final(EVP_MD_CTX *ctx, unsigned char *md);
141
142 static EVP_MD *_hidden_sha384_md = NULL;
143 static const EVP_MD *digest_sha384(void)
144 {
145     if (_hidden_sha384_md == NULL) {
146         EVP_MD *md;
147
148         if ((md = EVP_MD_meth_new(NID_sha384, NID_sha384WithRSAEncryption)) == NULL
149             || !EVP_MD_meth_set_result_size(md, SHA384_DIGEST_LENGTH)
150             || !EVP_MD_meth_set_input_blocksize(md, SHA512_CBLOCK)
151             || !EVP_MD_meth_set_app_datasize(md,
152                                              sizeof(EVP_MD *) + sizeof(SHA512_CTX))
153             || !EVP_MD_meth_set_flags(md, EVP_MD_FLAG_DIGALGID_ABSENT)
154             || !EVP_MD_meth_set_init(md, digest_sha384_init)
155             || !EVP_MD_meth_set_update(md, digest_sha512_update)
156             || !EVP_MD_meth_set_final(md, digest_sha384_final)) {
157             EVP_MD_meth_free(md);
158             md = NULL;
159         }
160         _hidden_sha384_md = md;
161     }
162     return _hidden_sha384_md;
163 }
164 static EVP_MD *_hidden_sha512_md = NULL;
165 static const EVP_MD *digest_sha512(void)
166 {
167     if (_hidden_sha512_md == NULL) {
168         EVP_MD *md;
169
170         if ((md = EVP_MD_meth_new(NID_sha512, NID_sha512WithRSAEncryption)) == NULL
171             || !EVP_MD_meth_set_result_size(md, SHA512_DIGEST_LENGTH)
172             || !EVP_MD_meth_set_input_blocksize(md, SHA512_CBLOCK)
173             || !EVP_MD_meth_set_app_datasize(md,
174                                              sizeof(EVP_MD *) + sizeof(SHA512_CTX))
175             || !EVP_MD_meth_set_flags(md, EVP_MD_FLAG_DIGALGID_ABSENT)
176             || !EVP_MD_meth_set_init(md, digest_sha512_init)
177             || !EVP_MD_meth_set_update(md, digest_sha512_update)
178             || !EVP_MD_meth_set_final(md, digest_sha512_final)) {
179             EVP_MD_meth_free(md);
180             md = NULL;
181         }
182         _hidden_sha512_md = md;
183     }
184     return _hidden_sha512_md;
185 }
186 static void destroy_digests(void)
187 {
188     EVP_MD_meth_free(_hidden_md5_md);
189     _hidden_md5_md = NULL;
190     EVP_MD_meth_free(_hidden_sha1_md);
191     _hidden_sha1_md = NULL;
192     EVP_MD_meth_free(_hidden_sha256_md);
193     _hidden_sha256_md = NULL;
194     EVP_MD_meth_free(_hidden_sha384_md);
195     _hidden_sha384_md = NULL;
196     EVP_MD_meth_free(_hidden_sha512_md);
197     _hidden_sha512_md = NULL;
198 }
199 static int ossltest_digest_nids(const int **nids)
200 {
201     static int digest_nids[6] = { 0, 0, 0, 0, 0, 0 };
202     static int pos = 0;
203     static int init = 0;
204
205     if (!init) {
206         const EVP_MD *md;
207         if ((md = digest_md5()) != NULL)
208             digest_nids[pos++] = EVP_MD_type(md);
209         if ((md = digest_sha1()) != NULL)
210             digest_nids[pos++] = EVP_MD_type(md);
211         if ((md = digest_sha256()) != NULL)
212             digest_nids[pos++] = EVP_MD_type(md);
213         if ((md = digest_sha384()) != NULL)
214             digest_nids[pos++] = EVP_MD_type(md);
215         if ((md = digest_sha512()) != NULL)
216             digest_nids[pos++] = EVP_MD_type(md);
217         digest_nids[pos] = 0;
218         init = 1;
219     }
220     *nids = digest_nids;
221     return pos;
222 }
223
224 /* Setup ciphers */
225 static int ossltest_ciphers(ENGINE *, const EVP_CIPHER **,
226                             const int **, int);
227
228 static int ossltest_cipher_nids[] = {
229     NID_aes_128_cbc, NID_aes_128_gcm, 0
230 };
231
232 /* AES128 */
233
234 int ossltest_aes128_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
235                              const unsigned char *iv, int enc);
236 int ossltest_aes128_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
237                                const unsigned char *in, size_t inl);
238 int ossltest_aes128_gcm_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
239                              const unsigned char *iv, int enc);
240 int ossltest_aes128_gcm_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
241                                const unsigned char *in, size_t inl);
242 static int ossltest_aes128_gcm_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg,
243                                     void *ptr);
244
245 static EVP_CIPHER *_hidden_aes_128_cbc = NULL;
246 static const EVP_CIPHER *ossltest_aes_128_cbc(void)
247 {
248     if (_hidden_aes_128_cbc == NULL
249         && ((_hidden_aes_128_cbc = EVP_CIPHER_meth_new(NID_aes_128_cbc,
250                                                        16 /* block size */,
251                                                        16 /* key len */)) == NULL
252             || !EVP_CIPHER_meth_set_iv_length(_hidden_aes_128_cbc,16)
253             || !EVP_CIPHER_meth_set_flags(_hidden_aes_128_cbc,
254                                           EVP_CIPH_FLAG_DEFAULT_ASN1
255                                           | EVP_CIPH_CBC_MODE)
256             || !EVP_CIPHER_meth_set_init(_hidden_aes_128_cbc,
257                                          ossltest_aes128_init_key)
258             || !EVP_CIPHER_meth_set_do_cipher(_hidden_aes_128_cbc,
259                                               ossltest_aes128_cbc_cipher)
260             || !EVP_CIPHER_meth_set_impl_ctx_size(_hidden_aes_128_cbc,
261                                                   EVP_CIPHER_impl_ctx_size(EVP_aes_128_cbc())))) {
262         EVP_CIPHER_meth_free(_hidden_aes_128_cbc);
263         _hidden_aes_128_cbc = NULL;
264     }
265     return _hidden_aes_128_cbc;
266 }
267 static EVP_CIPHER *_hidden_aes_128_gcm = NULL;
268
269 #define AES_GCM_FLAGS   (EVP_CIPH_FLAG_DEFAULT_ASN1 \
270                 | EVP_CIPH_CUSTOM_IV | EVP_CIPH_FLAG_CUSTOM_CIPHER \
271                 | EVP_CIPH_ALWAYS_CALL_INIT | EVP_CIPH_CTRL_INIT \
272                 | EVP_CIPH_CUSTOM_COPY |EVP_CIPH_FLAG_AEAD_CIPHER \
273                 | EVP_CIPH_GCM_MODE)
274
275 static const EVP_CIPHER *ossltest_aes_128_gcm(void)
276 {
277     if (_hidden_aes_128_gcm == NULL
278         && ((_hidden_aes_128_gcm = EVP_CIPHER_meth_new(NID_aes_128_gcm,
279                                                        1 /* block size */,
280                                                        16 /* key len */)) == NULL
281             || !EVP_CIPHER_meth_set_iv_length(_hidden_aes_128_gcm,12)
282             || !EVP_CIPHER_meth_set_flags(_hidden_aes_128_gcm, AES_GCM_FLAGS)
283             || !EVP_CIPHER_meth_set_init(_hidden_aes_128_gcm,
284                                          ossltest_aes128_gcm_init_key)
285             || !EVP_CIPHER_meth_set_do_cipher(_hidden_aes_128_gcm,
286                                               ossltest_aes128_gcm_cipher)
287             || !EVP_CIPHER_meth_set_ctrl(_hidden_aes_128_gcm,
288                                               ossltest_aes128_gcm_ctrl)
289             || !EVP_CIPHER_meth_set_impl_ctx_size(_hidden_aes_128_gcm,
290                               EVP_CIPHER_impl_ctx_size(EVP_aes_128_gcm())))) {
291         EVP_CIPHER_meth_free(_hidden_aes_128_gcm);
292         _hidden_aes_128_gcm = NULL;
293     }
294     return _hidden_aes_128_gcm;
295 }
296
297 static void destroy_ciphers(void)
298 {
299     EVP_CIPHER_meth_free(_hidden_aes_128_cbc);
300     EVP_CIPHER_meth_free(_hidden_aes_128_gcm);
301     _hidden_aes_128_cbc = NULL;
302 }
303
304 static int bind_ossltest(ENGINE *e)
305 {
306     /* Ensure the ossltest error handling is set up */
307     ERR_load_OSSLTEST_strings();
308
309     if (!ENGINE_set_id(e, engine_ossltest_id)
310         || !ENGINE_set_name(e, engine_ossltest_name)
311         || !ENGINE_set_digests(e, ossltest_digests)
312         || !ENGINE_set_ciphers(e, ossltest_ciphers)
313         || !ENGINE_set_destroy_function(e, ossltest_destroy)
314         || !ENGINE_set_init_function(e, ossltest_init)
315         || !ENGINE_set_finish_function(e, ossltest_finish)) {
316         OSSLTESTerr(OSSLTEST_F_BIND_OSSLTEST, OSSLTEST_R_INIT_FAILED);
317         return 0;
318     }
319
320     return 1;
321 }
322
323 #ifndef OPENSSL_NO_DYNAMIC_ENGINE
324 static int bind_helper(ENGINE *e, const char *id)
325 {
326     if (id && (strcmp(id, engine_ossltest_id) != 0))
327         return 0;
328     if (!bind_ossltest(e))
329         return 0;
330     return 1;
331 }
332
333 IMPLEMENT_DYNAMIC_CHECK_FN()
334     IMPLEMENT_DYNAMIC_BIND_FN(bind_helper)
335 #endif
336
337 static ENGINE *engine_ossltest(void)
338 {
339     ENGINE *ret = ENGINE_new();
340     if (ret == NULL)
341         return NULL;
342     if (!bind_ossltest(ret)) {
343         ENGINE_free(ret);
344         return NULL;
345     }
346     return ret;
347 }
348
349 void ENGINE_load_ossltest(void)
350 {
351     /* Copied from eng_[openssl|dyn].c */
352     ENGINE *toadd = engine_ossltest();
353     if (!toadd)
354         return;
355     ENGINE_add(toadd);
356     ENGINE_free(toadd);
357     ERR_clear_error();
358 }
359
360
361 static int ossltest_init(ENGINE *e)
362 {
363     return 1;
364 }
365
366
367 static int ossltest_finish(ENGINE *e)
368 {
369     return 1;
370 }
371
372
373 static int ossltest_destroy(ENGINE *e)
374 {
375     destroy_digests();
376     destroy_ciphers();
377     ERR_unload_OSSLTEST_strings();
378     return 1;
379 }
380
381 static int ossltest_digests(ENGINE *e, const EVP_MD **digest,
382                           const int **nids, int nid)
383 {
384     int ok = 1;
385     if (!digest) {
386         /* We are returning a list of supported nids */
387         return ossltest_digest_nids(nids);
388     }
389     /* We are being asked for a specific digest */
390     switch (nid) {
391     case NID_md5:
392         *digest = digest_md5();
393         break;
394     case NID_sha1:
395         *digest = digest_sha1();
396         break;
397     case NID_sha256:
398         *digest = digest_sha256();
399         break;
400     case NID_sha384:
401         *digest = digest_sha384();
402         break;
403     case NID_sha512:
404         *digest = digest_sha512();
405         break;
406     default:
407         ok = 0;
408         *digest = NULL;
409         break;
410     }
411     return ok;
412 }
413
414 static int ossltest_ciphers(ENGINE *e, const EVP_CIPHER **cipher,
415                           const int **nids, int nid)
416 {
417     int ok = 1;
418     if (!cipher) {
419         /* We are returning a list of supported nids */
420         *nids = ossltest_cipher_nids;
421         return (sizeof(ossltest_cipher_nids) - 1)
422                / sizeof(ossltest_cipher_nids[0]);
423     }
424     /* We are being asked for a specific cipher */
425     switch (nid) {
426     case NID_aes_128_cbc:
427         *cipher = ossltest_aes_128_cbc();
428         break;
429     case NID_aes_128_gcm:
430         *cipher = ossltest_aes_128_gcm();
431         break;
432     default:
433         ok = 0;
434         *cipher = NULL;
435         break;
436     }
437     return ok;
438 }
439
440 static void fill_known_data(unsigned char *md, unsigned int len)
441 {
442     unsigned int i;
443
444     for (i=0; i<len; i++) {
445         md[i] = (unsigned char)(i & 0xff);
446     }
447 }
448
449 /*
450  * MD5 implementation. We go through the motions of doing MD5 by deferring to
451  * the standard implementation. Then we overwrite the result with a will defined
452  * value, so that all "MD5" digests using the test engine always end up with
453  * the same value.
454  */
455 #undef data
456 #define data(ctx) ((MD5_CTX *)EVP_MD_CTX_md_data(ctx))
457 static int digest_md5_init(EVP_MD_CTX *ctx)
458 {
459     return MD5_Init(data(ctx));
460 }
461
462 static int digest_md5_update(EVP_MD_CTX *ctx, const void *data,
463                              size_t count)
464 {
465     return MD5_Update(data(ctx), data, (size_t)count);
466 }
467
468 static int digest_md5_final(EVP_MD_CTX *ctx, unsigned char *md)
469 {
470     int ret;
471     ret = MD5_Final(md, data(ctx));
472
473     if (ret > 0) {
474         fill_known_data(md, MD5_DIGEST_LENGTH);
475     }
476     return ret;
477 }
478
479 /*
480  * SHA1 implementation.
481  */
482 #undef data
483 #define data(ctx) ((SHA_CTX *)EVP_MD_CTX_md_data(ctx))
484 static int digest_sha1_init(EVP_MD_CTX *ctx)
485 {
486     return SHA1_Init(data(ctx));
487 }
488
489 static int digest_sha1_update(EVP_MD_CTX *ctx, const void *data,
490                               size_t count)
491 {
492     return SHA1_Update(data(ctx), data, (size_t)count);
493 }
494
495 static int digest_sha1_final(EVP_MD_CTX *ctx, unsigned char *md)
496 {
497     int ret;
498     ret = SHA1_Final(md, data(ctx));
499
500     if (ret > 0) {
501         fill_known_data(md, SHA_DIGEST_LENGTH);
502     }
503     return ret;
504 }
505
506 /*
507  * SHA256 implementation.
508  */
509 #undef data
510 #define data(ctx) ((SHA256_CTX *)EVP_MD_CTX_md_data(ctx))
511 static int digest_sha256_init(EVP_MD_CTX *ctx)
512 {
513     return SHA256_Init(data(ctx));
514 }
515
516 static int digest_sha256_update(EVP_MD_CTX *ctx, const void *data,
517                                 size_t count)
518 {
519     return SHA256_Update(data(ctx), data, (size_t)count);
520 }
521
522 static int digest_sha256_final(EVP_MD_CTX *ctx, unsigned char *md)
523 {
524     int ret;
525     ret = SHA256_Final(md, data(ctx));
526
527     if (ret > 0) {
528         fill_known_data(md, SHA256_DIGEST_LENGTH);
529     }
530     return ret;
531 }
532
533 /*
534  * SHA384/512 implementation.
535  */
536 #undef data
537 #define data(ctx) ((SHA512_CTX *)EVP_MD_CTX_md_data(ctx))
538 static int digest_sha384_init(EVP_MD_CTX *ctx)
539 {
540     return SHA384_Init(data(ctx));
541 }
542
543 static int digest_sha512_init(EVP_MD_CTX *ctx)
544 {
545     return SHA512_Init(data(ctx));
546 }
547
548 static int digest_sha512_update(EVP_MD_CTX *ctx, const void *data,
549                                 size_t count)
550 {
551     return SHA512_Update(data(ctx), data, (size_t)count);
552 }
553
554 static int digest_sha384_final(EVP_MD_CTX *ctx, unsigned char *md)
555 {
556     int ret;
557     /* Actually uses SHA512_Final! */
558     ret = SHA512_Final(md, data(ctx));
559
560     if (ret > 0) {
561         fill_known_data(md, SHA384_DIGEST_LENGTH);
562     }
563     return ret;
564 }
565
566 static int digest_sha512_final(EVP_MD_CTX *ctx, unsigned char *md)
567 {
568     int ret;
569     ret = SHA512_Final(md, data(ctx));
570
571     if (ret > 0) {
572         fill_known_data(md, SHA512_DIGEST_LENGTH);
573     }
574     return ret;
575 }
576
577 /*
578  * AES128 Implementation
579  */
580
581 int ossltest_aes128_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
582                              const unsigned char *iv, int enc)
583 {
584     return EVP_CIPHER_meth_get_init(EVP_aes_128_cbc()) (ctx, key, iv, enc);
585 }
586
587 int ossltest_aes128_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
588                                const unsigned char *in, size_t inl)
589 {
590     unsigned char *tmpbuf;
591     int ret;
592
593     tmpbuf = OPENSSL_malloc(inl);
594     if (tmpbuf == NULL)
595         return -1;
596
597     /* Remember what we were asked to encrypt */
598     memcpy(tmpbuf, in, inl);
599
600     /* Go through the motions of encrypting it */
601     ret = EVP_CIPHER_meth_get_do_cipher(EVP_aes_128_cbc())(ctx, out, in, inl);
602
603     /* Throw it all away and just use the plaintext as the output */
604     memcpy(out, tmpbuf, inl);
605     OPENSSL_free(tmpbuf);
606
607     return ret;
608 }
609
610 int ossltest_aes128_gcm_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
611                              const unsigned char *iv, int enc)
612 {
613     return EVP_CIPHER_meth_get_init(EVP_aes_128_gcm()) (ctx, key, iv, enc);
614 }
615
616
617 int ossltest_aes128_gcm_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
618                                const unsigned char *in, size_t inl)
619 {
620     const size_t datalen = inl - EVP_GCM_TLS_EXPLICIT_IV_LEN
621                            - EVP_GCM_TLS_TAG_LEN;
622     unsigned char *tmpbuf = OPENSSL_malloc(datalen);
623
624     if (tmpbuf == NULL)
625         return -1;
626
627     /* Remember what we were asked to encrypt */
628     memcpy(tmpbuf, in + EVP_GCM_TLS_EXPLICIT_IV_LEN, datalen);
629
630     /* Go through the motions of encrypting it */
631     EVP_CIPHER_meth_get_do_cipher(EVP_aes_128_gcm())(ctx, out, in, inl);
632
633     /*
634      * Throw it all away and just use the plaintext as the output with empty
635      * IV and tag
636      */
637     memset(out, 0, inl);
638     memcpy(out + EVP_GCM_TLS_EXPLICIT_IV_LEN, tmpbuf, datalen);
639     OPENSSL_free(tmpbuf);
640
641     return 1;
642 }
643
644 static int ossltest_aes128_gcm_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg,
645                                     void *ptr)
646 {
647     /* Pass the ctrl down */
648     return EVP_CIPHER_meth_get_ctrl(EVP_aes_128_gcm())(ctx, type, arg, ptr);
649 }