Engage vpaes-armv8 module.
[openssl.git] / crypto / cmac / cmac.c
1 /* crypto/cmac/cmac.c */
2 /*
3  * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
4  * project.
5  */
6 /* ====================================================================
7  * Copyright (c) 2010 The OpenSSL Project.  All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  *
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in
18  *    the documentation and/or other materials provided with the
19  *    distribution.
20  *
21  * 3. All advertising materials mentioning features or use of this
22  *    software must display the following acknowledgment:
23  *    "This product includes software developed by the OpenSSL Project
24  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
25  *
26  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
27  *    endorse or promote products derived from this software without
28  *    prior written permission. For written permission, please contact
29  *    licensing@OpenSSL.org.
30  *
31  * 5. Products derived from this software may not be called "OpenSSL"
32  *    nor may "OpenSSL" appear in their names without prior written
33  *    permission of the OpenSSL Project.
34  *
35  * 6. Redistributions of any form whatsoever must retain the following
36  *    acknowledgment:
37  *    "This product includes software developed by the OpenSSL Project
38  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
41  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
43  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
44  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
46  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
50  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
51  * OF THE POSSIBILITY OF SUCH DAMAGE.
52  * ====================================================================
53  */
54
55 #include <stdio.h>
56 #include <stdlib.h>
57 #include <string.h>
58 #include "cryptlib.h"
59 #include <openssl/cmac.h>
60
61 struct CMAC_CTX_st {
62     /* Cipher context to use */
63     EVP_CIPHER_CTX cctx;
64     /* Keys k1 and k2 */
65     unsigned char k1[EVP_MAX_BLOCK_LENGTH];
66     unsigned char k2[EVP_MAX_BLOCK_LENGTH];
67     /* Temporary block */
68     unsigned char tbl[EVP_MAX_BLOCK_LENGTH];
69     /* Last (possibly partial) block */
70     unsigned char last_block[EVP_MAX_BLOCK_LENGTH];
71     /* Number of bytes in last block: -1 means context not initialised */
72     int nlast_block;
73 };
74
75 /* Make temporary keys K1 and K2 */
76
77 static void make_kn(unsigned char *k1, const unsigned char *l, int bl)
78 {
79     int i;
80     unsigned char c = l[0], carry = c >> 7, cnext;
81
82     /* Shift block to left, including carry */
83     for (i = 0; i < bl - 1; i++, c = cnext)
84         k1[i] = (c << 1) | ((cnext = l[i + 1]) >> 7);
85
86     /* If MSB set fixup with R */
87     k1[i] = (c << 1) ^ ((0 - carry) & (bl == 16 ? 0x87 : 0x1b));
88 }
89
90 CMAC_CTX *CMAC_CTX_new(void)
91 {
92     CMAC_CTX *ctx;
93     ctx = OPENSSL_malloc(sizeof(CMAC_CTX));
94     if (!ctx)
95         return NULL;
96     EVP_CIPHER_CTX_init(&ctx->cctx);
97     ctx->nlast_block = -1;
98     return ctx;
99 }
100
101 void CMAC_CTX_cleanup(CMAC_CTX *ctx)
102 {
103     EVP_CIPHER_CTX_cleanup(&ctx->cctx);
104     OPENSSL_cleanse(ctx->tbl, EVP_MAX_BLOCK_LENGTH);
105     OPENSSL_cleanse(ctx->k1, EVP_MAX_BLOCK_LENGTH);
106     OPENSSL_cleanse(ctx->k2, EVP_MAX_BLOCK_LENGTH);
107     OPENSSL_cleanse(ctx->last_block, EVP_MAX_BLOCK_LENGTH);
108     ctx->nlast_block = -1;
109 }
110
111 EVP_CIPHER_CTX *CMAC_CTX_get0_cipher_ctx(CMAC_CTX *ctx)
112 {
113     return &ctx->cctx;
114 }
115
116 void CMAC_CTX_free(CMAC_CTX *ctx)
117 {
118     CMAC_CTX_cleanup(ctx);
119     OPENSSL_free(ctx);
120 }
121
122 int CMAC_CTX_copy(CMAC_CTX *out, const CMAC_CTX *in)
123 {
124     int bl;
125     if (in->nlast_block == -1)
126         return 0;
127     if (!EVP_CIPHER_CTX_copy(&out->cctx, &in->cctx))
128         return 0;
129     bl = M_EVP_CIPHER_CTX_block_size(&in->cctx);
130     memcpy(out->k1, in->k1, bl);
131     memcpy(out->k2, in->k2, bl);
132     memcpy(out->tbl, in->tbl, bl);
133     memcpy(out->last_block, in->last_block, bl);
134     out->nlast_block = in->nlast_block;
135     return 1;
136 }
137
138 int CMAC_Init(CMAC_CTX *ctx, const void *key, size_t keylen,
139               const EVP_CIPHER *cipher, ENGINE *impl)
140 {
141     static const unsigned char zero_iv[EVP_MAX_BLOCK_LENGTH] = { 0 };
142     /* All zeros means restart */
143     if (!key && !cipher && !impl && keylen == 0) {
144         /* Not initialised */
145         if (ctx->nlast_block == -1)
146             return 0;
147         if (!M_EVP_EncryptInit_ex(&ctx->cctx, NULL, NULL, NULL, zero_iv))
148             return 0;
149         memset(ctx->tbl, 0, M_EVP_CIPHER_CTX_block_size(&ctx->cctx));
150         ctx->nlast_block = 0;
151         return 1;
152     }
153     /* Initialiase context */
154     if (cipher && !M_EVP_EncryptInit_ex(&ctx->cctx, cipher, impl, NULL, NULL))
155         return 0;
156     /* Non-NULL key means initialisation complete */
157     if (key) {
158         int bl;
159         if (!M_EVP_CIPHER_CTX_cipher(&ctx->cctx))
160             return 0;
161         if (!EVP_CIPHER_CTX_set_key_length(&ctx->cctx, keylen))
162             return 0;
163         if (!M_EVP_EncryptInit_ex(&ctx->cctx, NULL, NULL, key, zero_iv))
164             return 0;
165         bl = M_EVP_CIPHER_CTX_block_size(&ctx->cctx);
166         if (!EVP_Cipher(&ctx->cctx, ctx->tbl, zero_iv, bl))
167             return 0;
168         make_kn(ctx->k1, ctx->tbl, bl);
169         make_kn(ctx->k2, ctx->k1, bl);
170         OPENSSL_cleanse(ctx->tbl, bl);
171         /* Reset context again ready for first data block */
172         if (!M_EVP_EncryptInit_ex(&ctx->cctx, NULL, NULL, NULL, zero_iv))
173             return 0;
174         /* Zero tbl so resume works */
175         memset(ctx->tbl, 0, bl);
176         ctx->nlast_block = 0;
177     }
178     return 1;
179 }
180
181 int CMAC_Update(CMAC_CTX *ctx, const void *in, size_t dlen)
182 {
183     const unsigned char *data = in;
184     size_t bl;
185     if (ctx->nlast_block == -1)
186         return 0;
187     if (dlen == 0)
188         return 1;
189     bl = M_EVP_CIPHER_CTX_block_size(&ctx->cctx);
190     /* Copy into partial block if we need to */
191     if (ctx->nlast_block > 0) {
192         size_t nleft;
193         nleft = bl - ctx->nlast_block;
194         if (dlen < nleft)
195             nleft = dlen;
196         memcpy(ctx->last_block + ctx->nlast_block, data, nleft);
197         dlen -= nleft;
198         ctx->nlast_block += nleft;
199         /* If no more to process return */
200         if (dlen == 0)
201             return 1;
202         data += nleft;
203         /* Else not final block so encrypt it */
204         if (!EVP_Cipher(&ctx->cctx, ctx->tbl, ctx->last_block, bl))
205             return 0;
206     }
207     /* Encrypt all but one of the complete blocks left */
208     while (dlen > bl) {
209         if (!EVP_Cipher(&ctx->cctx, ctx->tbl, data, bl))
210             return 0;
211         dlen -= bl;
212         data += bl;
213     }
214     /* Copy any data left to last block buffer */
215     memcpy(ctx->last_block, data, dlen);
216     ctx->nlast_block = dlen;
217     return 1;
218
219 }
220
221 int CMAC_Final(CMAC_CTX *ctx, unsigned char *out, size_t *poutlen)
222 {
223     int i, bl, lb;
224     if (ctx->nlast_block == -1)
225         return 0;
226     bl = M_EVP_CIPHER_CTX_block_size(&ctx->cctx);
227     *poutlen = (size_t)bl;
228     if (!out)
229         return 1;
230     lb = ctx->nlast_block;
231     /* Is last block complete? */
232     if (lb == bl) {
233         for (i = 0; i < bl; i++)
234             out[i] = ctx->last_block[i] ^ ctx->k1[i];
235     } else {
236         ctx->last_block[lb] = 0x80;
237         if (bl - lb > 1)
238             memset(ctx->last_block + lb + 1, 0, bl - lb - 1);
239         for (i = 0; i < bl; i++)
240             out[i] = ctx->last_block[i] ^ ctx->k2[i];
241     }
242     if (!EVP_Cipher(&ctx->cctx, out, out, bl)) {
243         OPENSSL_cleanse(out, bl);
244         return 0;
245     }
246     return 1;
247 }
248
249 int CMAC_resume(CMAC_CTX *ctx)
250 {
251     if (ctx->nlast_block == -1)
252         return 0;
253     /*
254      * The buffer "tbl" containes the last fully encrypted block which is the
255      * last IV (or all zeroes if no last encrypted block). The last block has
256      * not been modified since CMAC_final(). So reinitliasing using the last
257      * decrypted block will allow CMAC to continue after calling
258      * CMAC_Final().
259      */
260     return M_EVP_EncryptInit_ex(&ctx->cctx, NULL, NULL, NULL, ctx->tbl);
261 }