xref: /netbsd-src/crypto/external/bsd/openssl/dist/test/aesgcmtest.c (revision b0d1725196a7921d003d2c66a14f186abda4176b)
1*b0d17251Schristos /*
2*b0d17251Schristos  * Copyright 2019-2022 The OpenSSL Project Authors. All Rights Reserved.
3*b0d17251Schristos  *
4*b0d17251Schristos  * Licensed under the Apache License 2.0 (the "License").  You may not use
5*b0d17251Schristos  * this file except in compliance with the License.  You can obtain a copy
6*b0d17251Schristos  * in the file LICENSE in the source distribution or at
7*b0d17251Schristos  * https://www.openssl.org/source/license.html
8*b0d17251Schristos  */
9*b0d17251Schristos 
10*b0d17251Schristos #include <openssl/evp.h>
11*b0d17251Schristos #include "testutil.h"
12*b0d17251Schristos 
13*b0d17251Schristos static const unsigned char gcm_key[] = {
14*b0d17251Schristos     0xee, 0xbc, 0x1f, 0x57, 0x48, 0x7f, 0x51, 0x92, 0x1c, 0x04, 0x65, 0x66,
15*b0d17251Schristos     0x5f, 0x8a, 0xe6, 0xd1, 0x65, 0x8b, 0xb2, 0x6d, 0xe6, 0xf8, 0xa0, 0x69,
16*b0d17251Schristos     0xa3, 0x52, 0x02, 0x93, 0xa5, 0x72, 0x07, 0x8f
17*b0d17251Schristos };
18*b0d17251Schristos static const unsigned char gcm_iv[] = {
19*b0d17251Schristos     0x99, 0xaa, 0x3e, 0x68, 0xed, 0x81, 0x73, 0xa0, 0xee, 0xd0, 0x66, 0x84
20*b0d17251Schristos };
21*b0d17251Schristos static const unsigned char gcm_pt[] = {
22*b0d17251Schristos     0xf5, 0x6e, 0x87, 0x05, 0x5b, 0xc3, 0x2d, 0x0e, 0xeb, 0x31, 0xb2, 0xea,
23*b0d17251Schristos     0xcc, 0x2b, 0xf2, 0xa5
24*b0d17251Schristos };
25*b0d17251Schristos static const unsigned char gcm_aad[] = {
26*b0d17251Schristos     0x4d, 0x23, 0xc3, 0xce, 0xc3, 0x34, 0xb4, 0x9b, 0xdb, 0x37, 0x0c, 0x43,
27*b0d17251Schristos     0x7f, 0xec, 0x78, 0xde
28*b0d17251Schristos };
29*b0d17251Schristos static const unsigned char gcm_ct[] = {
30*b0d17251Schristos     0xf7, 0x26, 0x44, 0x13, 0xa8, 0x4c, 0x0e, 0x7c, 0xd5, 0x36, 0x86, 0x7e,
31*b0d17251Schristos     0xb9, 0xf2, 0x17, 0x36
32*b0d17251Schristos };
33*b0d17251Schristos static const unsigned char gcm_tag[] = {
34*b0d17251Schristos     0x67, 0xba, 0x05, 0x10, 0x26, 0x2a, 0xe4, 0x87, 0xd7, 0x37, 0xee, 0x62,
35*b0d17251Schristos     0x98, 0xf7, 0x7e, 0x0c
36*b0d17251Schristos };
37*b0d17251Schristos 
do_encrypt(unsigned char * iv_gen,unsigned char * ct,int * ct_len,unsigned char * tag,int * tag_len)38*b0d17251Schristos static int do_encrypt(unsigned char *iv_gen, unsigned char *ct, int *ct_len,
39*b0d17251Schristos                       unsigned char *tag, int *tag_len)
40*b0d17251Schristos {
41*b0d17251Schristos     int ret = 0;
42*b0d17251Schristos     EVP_CIPHER_CTX *ctx = NULL;
43*b0d17251Schristos     int outlen;
44*b0d17251Schristos     unsigned char outbuf[64];
45*b0d17251Schristos 
46*b0d17251Schristos     *tag_len = 16;
47*b0d17251Schristos     ret = TEST_ptr(ctx = EVP_CIPHER_CTX_new())
48*b0d17251Schristos           && TEST_true(EVP_EncryptInit_ex(ctx, EVP_aes_256_gcm(), NULL, NULL,
49*b0d17251Schristos                                           NULL) > 0)
50*b0d17251Schristos           && TEST_true(EVP_EncryptInit_ex(ctx, NULL, NULL, gcm_key,
51*b0d17251Schristos                                           iv_gen != NULL ? NULL : gcm_iv) > 0)
52*b0d17251Schristos           && TEST_true(EVP_EncryptUpdate(ctx, NULL, &outlen, gcm_aad,
53*b0d17251Schristos                                          sizeof(gcm_aad)) > 0)
54*b0d17251Schristos           && TEST_true(EVP_EncryptUpdate(ctx, ct, ct_len, gcm_pt,
55*b0d17251Schristos                                          sizeof(gcm_pt)) > 0)
56*b0d17251Schristos           && TEST_true(EVP_EncryptFinal_ex(ctx, outbuf, &outlen) > 0)
57*b0d17251Schristos           && TEST_int_eq(EVP_CIPHER_CTX_get_tag_length(ctx), 16)
58*b0d17251Schristos           && TEST_true(EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_GET_TAG, 16,
59*b0d17251Schristos                                            tag) > 0)
60*b0d17251Schristos           && TEST_true(iv_gen == NULL
61*b0d17251Schristos                   || EVP_CIPHER_CTX_get_original_iv(ctx, iv_gen, 12));
62*b0d17251Schristos     EVP_CIPHER_CTX_free(ctx);
63*b0d17251Schristos     return ret;
64*b0d17251Schristos }
65*b0d17251Schristos 
do_decrypt(const unsigned char * iv,const unsigned char * ct,int ct_len,const unsigned char * tag,int tag_len)66*b0d17251Schristos static int do_decrypt(const unsigned char *iv, const unsigned char *ct,
67*b0d17251Schristos                       int ct_len, const unsigned char *tag, int tag_len)
68*b0d17251Schristos {
69*b0d17251Schristos     int ret = 0;
70*b0d17251Schristos     EVP_CIPHER_CTX *ctx = NULL;
71*b0d17251Schristos     int outlen, ptlen;
72*b0d17251Schristos     unsigned char pt[32];
73*b0d17251Schristos     unsigned char outbuf[32];
74*b0d17251Schristos 
75*b0d17251Schristos     ret = TEST_ptr(ctx = EVP_CIPHER_CTX_new())
76*b0d17251Schristos               && TEST_true(EVP_DecryptInit_ex(ctx, EVP_aes_256_gcm(), NULL,
77*b0d17251Schristos                                               NULL, NULL) > 0)
78*b0d17251Schristos               && TEST_true(EVP_DecryptInit_ex(ctx, NULL, NULL, gcm_key, iv) > 0)
79*b0d17251Schristos               && TEST_int_eq(EVP_CIPHER_CTX_get_tag_length(ctx), 16)
80*b0d17251Schristos               && TEST_true(EVP_DecryptUpdate(ctx, NULL, &outlen, gcm_aad,
81*b0d17251Schristos                                              sizeof(gcm_aad)) > 0)
82*b0d17251Schristos               && TEST_true(EVP_DecryptUpdate(ctx, pt, &ptlen, ct,
83*b0d17251Schristos                                              ct_len) > 0)
84*b0d17251Schristos               && TEST_true(EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_TAG,
85*b0d17251Schristos                                                tag_len, (void *)tag) > 0)
86*b0d17251Schristos               && TEST_true(EVP_DecryptFinal_ex(ctx, outbuf, &outlen) > 0)
87*b0d17251Schristos               && TEST_mem_eq(gcm_pt, sizeof(gcm_pt), pt, ptlen);
88*b0d17251Schristos 
89*b0d17251Schristos     EVP_CIPHER_CTX_free(ctx);
90*b0d17251Schristos     return ret;
91*b0d17251Schristos }
92*b0d17251Schristos 
kat_test(void)93*b0d17251Schristos static int kat_test(void)
94*b0d17251Schristos {
95*b0d17251Schristos     unsigned char tag[32];
96*b0d17251Schristos     unsigned char ct[32];
97*b0d17251Schristos     int ctlen = 0, taglen = 0;
98*b0d17251Schristos 
99*b0d17251Schristos     return do_encrypt(NULL, ct, &ctlen, tag, &taglen)
100*b0d17251Schristos            && TEST_mem_eq(gcm_ct, sizeof(gcm_ct), ct, ctlen)
101*b0d17251Schristos            && TEST_mem_eq(gcm_tag, sizeof(gcm_tag), tag, taglen)
102*b0d17251Schristos            && do_decrypt(gcm_iv, ct, ctlen, tag, taglen);
103*b0d17251Schristos }
104*b0d17251Schristos 
badkeylen_test(void)105*b0d17251Schristos static int badkeylen_test(void)
106*b0d17251Schristos {
107*b0d17251Schristos     int ret;
108*b0d17251Schristos     EVP_CIPHER_CTX *ctx = NULL;
109*b0d17251Schristos     const EVP_CIPHER *cipher;
110*b0d17251Schristos 
111*b0d17251Schristos     ret = TEST_ptr(cipher = EVP_aes_192_gcm())
112*b0d17251Schristos           && TEST_ptr(ctx = EVP_CIPHER_CTX_new())
113*b0d17251Schristos           && TEST_true(EVP_EncryptInit_ex(ctx, cipher, NULL, NULL, NULL))
114*b0d17251Schristos           && TEST_int_le(EVP_CIPHER_CTX_set_key_length(ctx, 2), 0);
115*b0d17251Schristos     EVP_CIPHER_CTX_free(ctx);
116*b0d17251Schristos     return ret;
117*b0d17251Schristos }
118*b0d17251Schristos 
ivgen_test(void)119*b0d17251Schristos static int ivgen_test(void)
120*b0d17251Schristos {
121*b0d17251Schristos     unsigned char iv_gen[16];
122*b0d17251Schristos     unsigned char tag[32];
123*b0d17251Schristos     unsigned char ct[32];
124*b0d17251Schristos     int ctlen = 0, taglen = 0;
125*b0d17251Schristos 
126*b0d17251Schristos     return do_encrypt(iv_gen, ct, &ctlen, tag, &taglen)
127*b0d17251Schristos            && do_decrypt(iv_gen, ct, ctlen, tag, taglen);
128*b0d17251Schristos }
129*b0d17251Schristos 
setup_tests(void)130*b0d17251Schristos int setup_tests(void)
131*b0d17251Schristos {
132*b0d17251Schristos     ADD_TEST(kat_test);
133*b0d17251Schristos     ADD_TEST(badkeylen_test);
134*b0d17251Schristos     ADD_TEST(ivgen_test);
135*b0d17251Schristos     return 1;
136*b0d17251Schristos }
137