Replace EVP_CTRL_OCB_SET_TAGLEN with EVP_CTRL_SET_TAG for consistency with
[openssl.git] / demos / evp / aesccm.c
1 /*
2  * Simple AES CCM test program, uses the same NIST data used for the FIPS
3  * self test but uses the application level EVP APIs.
4  */
5 #include <stdio.h>
6 #include <openssl/bio.h>
7 #include <openssl/evp.h>
8
9 /* AES-CCM test data from NIST public test vectors */
10
11 static const unsigned char ccm_key[] = {
12     0xce, 0xb0, 0x09, 0xae, 0xa4, 0x45, 0x44, 0x51, 0xfe, 0xad, 0xf0, 0xe6,
13     0xb3, 0x6f, 0x45, 0x55, 0x5d, 0xd0, 0x47, 0x23, 0xba, 0xa4, 0x48, 0xe8
14 };
15
16 static const unsigned char ccm_nonce[] = {
17     0x76, 0x40, 0x43, 0xc4, 0x94, 0x60, 0xb7
18 };
19
20 static const unsigned char ccm_adata[] = {
21     0x6e, 0x80, 0xdd, 0x7f, 0x1b, 0xad, 0xf3, 0xa1, 0xc9, 0xab, 0x25, 0xc7,
22     0x5f, 0x10, 0xbd, 0xe7, 0x8c, 0x23, 0xfa, 0x0e, 0xb8, 0xf9, 0xaa, 0xa5,
23     0x3a, 0xde, 0xfb, 0xf4, 0xcb, 0xf7, 0x8f, 0xe4
24 };
25
26 static const unsigned char ccm_pt[] = {
27     0xc8, 0xd2, 0x75, 0xf9, 0x19, 0xe1, 0x7d, 0x7f, 0xe6, 0x9c, 0x2a, 0x1f,
28     0x58, 0x93, 0x9d, 0xfe, 0x4d, 0x40, 0x37, 0x91, 0xb5, 0xdf, 0x13, 0x10
29 };
30
31 static const unsigned char ccm_ct[] = {
32     0x8a, 0x0f, 0x3d, 0x82, 0x29, 0xe4, 0x8e, 0x74, 0x87, 0xfd, 0x95, 0xa2,
33     0x8a, 0xd3, 0x92, 0xc8, 0x0b, 0x36, 0x81, 0xd4, 0xfb, 0xc7, 0xbb, 0xfd
34 };
35
36 static const unsigned char ccm_tag[] = {
37     0x2d, 0xd6, 0xef, 0x1c, 0x45, 0xd4, 0xcc, 0xb7, 0x23, 0xdc, 0x07, 0x44,
38     0x14, 0xdb, 0x50, 0x6d
39 };
40
41 void aes_ccm_encrypt(void)
42 {
43     EVP_CIPHER_CTX *ctx;
44     int outlen, tmplen;
45     unsigned char outbuf[1024];
46     printf("AES CCM Encrypt:\n");
47     printf("Plaintext:\n");
48     BIO_dump_fp(stdout, ccm_pt, sizeof(ccm_pt));
49     ctx = EVP_CIPHER_CTX_new();
50     /* Set cipher type and mode */
51     EVP_EncryptInit_ex(ctx, EVP_aes_192_ccm(), NULL, NULL, NULL);
52     /* Set nonce length if default 96 bits is not appropriate */
53     EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_CCM_SET_IVLEN, sizeof(ccm_nonce), NULL);
54     /* Set tag length */
55     EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_CCM_SET_TAG, sizeof(ccm_tag), NULL);
56     /* Initialise key and IV */
57     EVP_EncryptInit_ex(ctx, NULL, NULL, ccm_key, ccm_nonce);
58     /* Set plaintext length: only needed if AAD is used */
59     EVP_EncryptUpdate(ctx, NULL, &outlen, NULL, sizeof(ccm_pt));
60     /* Zero or one call to specify any AAD */
61     EVP_EncryptUpdate(ctx, NULL, &outlen, ccm_adata, sizeof(ccm_adata));
62     /* Encrypt plaintext: can only be called once */
63     EVP_EncryptUpdate(ctx, outbuf, &outlen, ccm_pt, sizeof(ccm_pt));
64     /* Output encrypted block */
65     printf("Ciphertext:\n");
66     BIO_dump_fp(stdout, outbuf, outlen);
67     /* Finalise: note get no output for CCM */
68     EVP_EncryptFinal_ex(ctx, outbuf, &outlen);
69     /* Get tag */
70     EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_CCM_GET_TAG, 16, outbuf);
71     /* Output tag */
72     printf("Tag:\n");
73     BIO_dump_fp(stdout, outbuf, 16);
74     EVP_CIPHER_CTX_free(ctx);
75 }
76
77 void aes_ccm_decrypt(void)
78 {
79     EVP_CIPHER_CTX *ctx;
80     int outlen, tmplen, rv;
81     unsigned char outbuf[1024];
82     printf("AES CCM Derypt:\n");
83     printf("Ciphertext:\n");
84     BIO_dump_fp(stdout, ccm_ct, sizeof(ccm_ct));
85     ctx = EVP_CIPHER_CTX_new();
86     /* Select cipher */
87     EVP_DecryptInit_ex(ctx, EVP_aes_192_ccm(), NULL, NULL, NULL);
88     /* Set nonce length, omit for 96 bits */
89     EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_CCM_SET_IVLEN, sizeof(ccm_nonce), NULL);
90     /* Set expected tag value */
91     EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_CCM_SET_TAG,
92                         sizeof(ccm_tag), (void *)ccm_tag);
93     /* Specify key and IV */
94     EVP_DecryptInit_ex(ctx, NULL, NULL, ccm_key, ccm_nonce);
95     /* Set ciphertext length: only needed if we have AAD */
96     EVP_DecryptUpdate(ctx, NULL, &outlen, NULL, sizeof(ccm_ct));
97     /* Zero or one call to specify any AAD */
98     EVP_DecryptUpdate(ctx, NULL, &outlen, ccm_adata, sizeof(ccm_adata));
99     /* Decrypt plaintext, verify tag: can only be called once */
100     rv = EVP_DecryptUpdate(ctx, outbuf, &outlen, ccm_ct, sizeof(ccm_ct));
101     /* Output decrypted block: if tag verify failed we get nothing */
102     if (rv > 0) {
103         printf("Plaintext:\n");
104         BIO_dump_fp(stdout, outbuf, outlen);
105     } else
106         printf("Plaintext not available: tag verify failed.\n");
107     EVP_CIPHER_CTX_free(ctx);
108 }
109
110 int main(int argc, char **argv)
111 {
112     aes_ccm_encrypt();
113     aes_ccm_decrypt();
114 }