blob: 3c9f08c8ef5e90b063fee2f113a22856ef5fb779 [file] [log] [blame]
Matt Caswell2d5d70b2015-06-16 12:59:37 +01001/*
Rich Salz440e5d82016-05-17 14:20:24 -04002 * Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
Matt Caswell2d5d70b2015-06-16 12:59:37 +01003 *
Rich Salz440e5d82016-05-17 14:20:24 -04004 * 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
Matt Caswell2d5d70b2015-06-16 12:59:37 +01008 */
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>
Matt Caswell7b9f8f72016-02-08 16:43:03 +000026#include <openssl/crypto.h>
Matt Caswell2d5d70b2015-06-16 12:59:37 +010027
28#define OSSLTEST_LIB_NAME "OSSLTEST"
29#include "e_ossltest_err.c"
30
31/* Engine Id and Name */
32static const char *engine_ossltest_id = "ossltest";
33static const char *engine_ossltest_name = "OpenSSL Test engine support";
34
35
36/* Engine Lifetime functions */
37static int ossltest_destroy(ENGINE *e);
38static int ossltest_init(ENGINE *e);
39static int ossltest_finish(ENGINE *e);
40void ENGINE_load_ossltest(void);
41
42
43/* Set up digests */
44static int ossltest_digests(ENGINE *e, const EVP_MD **digest,
45 const int **nids, int nid);
46
Matt Caswell2d5d70b2015-06-16 12:59:37 +010047/* MD5 */
48static int digest_md5_init(EVP_MD_CTX *ctx);
49static int digest_md5_update(EVP_MD_CTX *ctx, const void *data,
Andy Polyakov16a95422015-09-28 15:56:34 +020050 size_t count);
Matt Caswell2d5d70b2015-06-16 12:59:37 +010051static int digest_md5_final(EVP_MD_CTX *ctx, unsigned char *md);
52
Richard Levittecddcea82015-11-30 10:24:12 +010053static EVP_MD *_hidden_md5_md = NULL;
54static 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}
Matt Caswell2d5d70b2015-06-16 12:59:37 +010075
76/* SHA1 */
77static int digest_sha1_init(EVP_MD_CTX *ctx);
78static int digest_sha1_update(EVP_MD_CTX *ctx, const void *data,
Andy Polyakov16a95422015-09-28 15:56:34 +020079 size_t count);
Matt Caswell2d5d70b2015-06-16 12:59:37 +010080static int digest_sha1_final(EVP_MD_CTX *ctx, unsigned char *md);
81
Richard Levittecddcea82015-11-30 10:24:12 +010082static EVP_MD *_hidden_sha1_md = NULL;
83static 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}
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100104
105/* SHA256 */
106static int digest_sha256_init(EVP_MD_CTX *ctx);
107static int digest_sha256_update(EVP_MD_CTX *ctx, const void *data,
Andy Polyakov16a95422015-09-28 15:56:34 +0200108 size_t count);
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100109static int digest_sha256_final(EVP_MD_CTX *ctx, unsigned char *md);
110
Richard Levittecddcea82015-11-30 10:24:12 +0100111static EVP_MD *_hidden_sha256_md = NULL;
112static 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}
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100133
134/* SHA384/SHA512 */
135static int digest_sha384_init(EVP_MD_CTX *ctx);
136static int digest_sha512_init(EVP_MD_CTX *ctx);
137static int digest_sha512_update(EVP_MD_CTX *ctx, const void *data,
Andy Polyakov16a95422015-09-28 15:56:34 +0200138 size_t count);
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100139static int digest_sha384_final(EVP_MD_CTX *ctx, unsigned char *md);
140static int digest_sha512_final(EVP_MD_CTX *ctx, unsigned char *md);
141
Richard Levittecddcea82015-11-30 10:24:12 +0100142static EVP_MD *_hidden_sha384_md = NULL;
143static const EVP_MD *digest_sha384(void)
144{
145 if (_hidden_sha384_md == NULL) {
146 EVP_MD *md;
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100147
Richard Levittecddcea82015-11-30 10:24:12 +0100148 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}
164static EVP_MD *_hidden_sha512_md = NULL;
165static 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}
186static 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}
199static 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}
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100223
224/* Setup ciphers */
225static int ossltest_ciphers(ENGINE *, const EVP_CIPHER **,
226 const int **, int);
227
228static int ossltest_cipher_nids[] = {
Matt Caswellaad22ba2016-10-27 18:32:36 +0100229 NID_aes_128_cbc, NID_aes_128_gcm, 0
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100230};
231
232/* AES128 */
233
234int ossltest_aes128_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
235 const unsigned char *iv, int enc);
236int ossltest_aes128_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
237 const unsigned char *in, size_t inl);
Matt Caswellaad22ba2016-10-27 18:32:36 +0100238int ossltest_aes128_gcm_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
239 const unsigned char *iv, int enc);
240int ossltest_aes128_gcm_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
241 const unsigned char *in, size_t inl);
242static int ossltest_aes128_gcm_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg,
243 void *ptr);
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100244
Richard Levitte39e8d0c2015-12-18 17:05:57 +0100245static EVP_CIPHER *_hidden_aes_128_cbc = NULL;
246static 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}
Matt Caswellaad22ba2016-10-27 18:32:36 +0100267static EVP_CIPHER *_hidden_aes_128_gcm = NULL;
Matt Caswellca0b75a2016-11-01 18:28:19 +0000268
Matt Caswellaad22ba2016-10-27 18:32:36 +0100269#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)
Matt Caswellca0b75a2016-11-01 18:28:19 +0000274
Matt Caswellaad22ba2016-10-27 18:32:36 +0100275static 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
Richard Levitte39e8d0c2015-12-18 17:05:57 +0100297static void destroy_ciphers(void)
298{
299 EVP_CIPHER_meth_free(_hidden_aes_128_cbc);
Matt Caswellaad22ba2016-10-27 18:32:36 +0100300 EVP_CIPHER_meth_free(_hidden_aes_128_gcm);
Richard Levitte39e8d0c2015-12-18 17:05:57 +0100301 _hidden_aes_128_cbc = NULL;
302}
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100303
304static 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
Richard Levittec0cbb4c2015-08-10 10:46:27 +0100323#ifndef OPENSSL_NO_DYNAMIC_ENGINE
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100324static 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
333IMPLEMENT_DYNAMIC_CHECK_FN()
334 IMPLEMENT_DYNAMIC_BIND_FN(bind_helper)
Richard Levittec0cbb4c2015-08-10 10:46:27 +0100335#endif
336
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100337static ENGINE *engine_ossltest(void)
338{
339 ENGINE *ret = ENGINE_new();
Matt Caswell55646002015-10-30 11:22:31 +0000340 if (ret == NULL)
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100341 return NULL;
342 if (!bind_ossltest(ret)) {
343 ENGINE_free(ret);
344 return NULL;
345 }
346 return ret;
347}
348
349void 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}
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100359
360
361static int ossltest_init(ENGINE *e)
362{
363 return 1;
364}
365
366
367static int ossltest_finish(ENGINE *e)
368{
369 return 1;
370}
371
372
373static int ossltest_destroy(ENGINE *e)
374{
Richard Levittecddcea82015-11-30 10:24:12 +0100375 destroy_digests();
Richard Levitte39e8d0c2015-12-18 17:05:57 +0100376 destroy_ciphers();
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100377 ERR_unload_OSSLTEST_strings();
378 return 1;
379}
380
381static 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 */
Richard Levittecddcea82015-11-30 10:24:12 +0100387 return ossltest_digest_nids(nids);
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100388 }
389 /* We are being asked for a specific digest */
390 switch (nid) {
391 case NID_md5:
Richard Levittecddcea82015-11-30 10:24:12 +0100392 *digest = digest_md5();
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100393 break;
394 case NID_sha1:
Richard Levittecddcea82015-11-30 10:24:12 +0100395 *digest = digest_sha1();
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100396 break;
397 case NID_sha256:
Richard Levittecddcea82015-11-30 10:24:12 +0100398 *digest = digest_sha256();
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100399 break;
400 case NID_sha384:
Richard Levittecddcea82015-11-30 10:24:12 +0100401 *digest = digest_sha384();
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100402 break;
403 case NID_sha512:
Richard Levittecddcea82015-11-30 10:24:12 +0100404 *digest = digest_sha512();
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100405 break;
406 default:
407 ok = 0;
408 *digest = NULL;
409 break;
410 }
411 return ok;
412}
413
414static 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:
Richard Levitte39e8d0c2015-12-18 17:05:57 +0100427 *cipher = ossltest_aes_128_cbc();
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100428 break;
Matt Caswellaad22ba2016-10-27 18:32:36 +0100429 case NID_aes_128_gcm:
430 *cipher = ossltest_aes_128_gcm();
431 break;
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100432 default:
433 ok = 0;
434 *cipher = NULL;
435 break;
436 }
437 return ok;
438}
439
440static 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
Richard Levitte6e59a892015-11-27 14:02:12 +0100456#define data(ctx) ((MD5_CTX *)EVP_MD_CTX_md_data(ctx))
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100457static int digest_md5_init(EVP_MD_CTX *ctx)
458{
459 return MD5_Init(data(ctx));
460}
461
462static int digest_md5_update(EVP_MD_CTX *ctx, const void *data,
Andy Polyakov16a95422015-09-28 15:56:34 +0200463 size_t count)
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100464{
465 return MD5_Update(data(ctx), data, (size_t)count);
466}
467
468static 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
Richard Levitte6e59a892015-11-27 14:02:12 +0100483#define data(ctx) ((SHA_CTX *)EVP_MD_CTX_md_data(ctx))
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100484static int digest_sha1_init(EVP_MD_CTX *ctx)
485{
486 return SHA1_Init(data(ctx));
487}
488
489static int digest_sha1_update(EVP_MD_CTX *ctx, const void *data,
Andy Polyakov16a95422015-09-28 15:56:34 +0200490 size_t count)
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100491{
492 return SHA1_Update(data(ctx), data, (size_t)count);
493}
494
495static 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
Richard Levitte6e59a892015-11-27 14:02:12 +0100510#define data(ctx) ((SHA256_CTX *)EVP_MD_CTX_md_data(ctx))
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100511static int digest_sha256_init(EVP_MD_CTX *ctx)
512{
513 return SHA256_Init(data(ctx));
514}
515
516static int digest_sha256_update(EVP_MD_CTX *ctx, const void *data,
Andy Polyakov16a95422015-09-28 15:56:34 +0200517 size_t count)
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100518{
519 return SHA256_Update(data(ctx), data, (size_t)count);
520}
521
522static 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
Richard Levitte6e59a892015-11-27 14:02:12 +0100537#define data(ctx) ((SHA512_CTX *)EVP_MD_CTX_md_data(ctx))
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100538static int digest_sha384_init(EVP_MD_CTX *ctx)
539{
540 return SHA384_Init(data(ctx));
541}
542
543static int digest_sha512_init(EVP_MD_CTX *ctx)
544{
545 return SHA512_Init(data(ctx));
546}
547
548static int digest_sha512_update(EVP_MD_CTX *ctx, const void *data,
Andy Polyakov16a95422015-09-28 15:56:34 +0200549 size_t count)
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100550{
551 return SHA512_Update(data(ctx), data, (size_t)count);
552}
553
554static 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
566static 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
581int ossltest_aes128_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
582 const unsigned char *iv, int enc)
583{
Richard Levitte39e8d0c2015-12-18 17:05:57 +0100584 return EVP_CIPHER_meth_get_init(EVP_aes_128_cbc()) (ctx, key, iv, enc);
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100585}
586
587int 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 */
Richard Levitte39e8d0c2015-12-18 17:05:57 +0100601 ret = EVP_CIPHER_meth_get_do_cipher(EVP_aes_128_cbc())(ctx, out, in, inl);
Matt Caswell2d5d70b2015-06-16 12:59:37 +0100602
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}
Matt Caswellaad22ba2016-10-27 18:32:36 +0100609
610int 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
617int ossltest_aes128_gcm_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
618 const unsigned char *in, size_t inl)
619{
Matt Caswellbebc0c72016-11-17 18:00:17 +0000620 unsigned char *tmpbuf = OPENSSL_malloc(inl);
Matt Caswellaad22ba2016-10-27 18:32:36 +0100621
Matt Caswell6606d602016-11-29 23:27:27 +0000622 /* OPENSSL_malloc will return NULL if inl == 0 */
Matt Caswellbebc0c72016-11-17 18:00:17 +0000623 if (tmpbuf == NULL && inl > 0)
Matt Caswellaad22ba2016-10-27 18:32:36 +0100624 return -1;
625
626 /* Remember what we were asked to encrypt */
Matt Caswellbebc0c72016-11-17 18:00:17 +0000627 memcpy(tmpbuf, in, inl);
Matt Caswellaad22ba2016-10-27 18:32:36 +0100628
629 /* Go through the motions of encrypting it */
630 EVP_CIPHER_meth_get_do_cipher(EVP_aes_128_gcm())(ctx, out, in, inl);
631
Matt Caswell6606d602016-11-29 23:27:27 +0000632 /* Throw it all away and just use the plaintext as the output */
Matt Caswellbebc0c72016-11-17 18:00:17 +0000633 memcpy(out, tmpbuf, inl);
Matt Caswellaad22ba2016-10-27 18:32:36 +0100634 OPENSSL_free(tmpbuf);
635
Matt Caswellbebc0c72016-11-17 18:00:17 +0000636 return inl;
Matt Caswellaad22ba2016-10-27 18:32:36 +0100637}
638
639static int ossltest_aes128_gcm_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg,
640 void *ptr)
641{
Matt Caswellaad22ba2016-10-27 18:32:36 +0100642 /* Pass the ctrl down */
Matt Caswell6606d602016-11-29 23:27:27 +0000643 int ret = EVP_CIPHER_meth_get_ctrl(EVP_aes_128_gcm())(ctx, type, arg, ptr);
Matt Caswellbebc0c72016-11-17 18:00:17 +0000644
645 if (ret <= 0)
646 return ret;
647
648 switch(type) {
649 case EVP_CTRL_AEAD_GET_TAG:
650 /* Always give the same tag */
651 memset(ptr, 0, EVP_GCM_TLS_TAG_LEN);
652 break;
653
654 default:
655 break;
656 }
657
658 return 1;
Matt Caswellaad22ba2016-10-27 18:32:36 +0100659}