]> www.wagner.pp.ru Git - openssl-gost/engine.git/blob - gost_omac.c
OMACs implementation. Unfinished.
[openssl-gost/engine.git] / gost_omac.c
1 #include <string.h>
2 #include <openssl/cmac.h>
3 #include <openssl/conf.h>
4 #include <openssl/err.h>
5 #include <openssl/evp.h>
6
7 #include "e_gost_err.h"
8 #include "gost_lcl.h"
9
10 typedef struct omac_ctx {
11         CMAC_CTX *cmac_ctx;
12         size_t   dgst_size;
13         int      cipher_nid;
14         int      key_set;
15 } OMAC_CTX;
16
17 #define MAX_GOST_OMAC_SIZE 16
18
19 static int omac_init(EVP_MD_CTX *ctx, int cipher_nid)
20 {
21     OMAC_CTX *c = EVP_MD_CTX_md_data(ctx);
22                 memset(c, 0, sizeof(OMAC_CTX));
23                 c->cipher_nid = cipher_nid;
24                 c->key_set    = 0;
25
26                 switch(cipher_nid) {
27                         case NID_magma_cbc:
28                                 c->dgst_size = 4;
29                         break;
30
31                         case NID_grasshopper_cbc:
32                                 c->dgst_size = 8;
33                         break;
34                 }
35
36     return 1;
37 }
38
39 static int magma_imit_init(EVP_MD_CTX *ctx)
40 {
41     return omac_init(ctx, NID_magma_cbc);
42 }
43
44 static int grasshopper_imit_init(EVP_MD_CTX *ctx)
45 {
46     return omac_init(ctx, NID_grasshopper_cbc);
47 }
48
49 static int omac_imit_update(EVP_MD_CTX *ctx, const void *data, size_t count)
50 {
51     OMAC_CTX *c = EVP_MD_CTX_md_data(ctx);
52                 if (!c->key_set)
53                 {
54         GOSTerr(GOST_F_OMAC_IMIT_UPDATE, GOST_R_MAC_KEY_NOT_SET);
55         return 0;
56                 }
57
58                 return CMAC_Update(c->cmac_ctx, data, count);
59 }
60
61 int omac_imit_final(EVP_MD_CTX *ctx, unsigned char *md)
62 {
63     OMAC_CTX *c = EVP_MD_CTX_md_data(ctx);
64                 unsigned char mac[MAX_GOST_OMAC_SIZE];
65                 size_t mac_size = sizeof(mac);
66
67     if (!c->key_set) {
68         GOSTerr(GOST_F_OMAC_IMIT_FINAL, GOST_R_MAC_KEY_NOT_SET);
69         return 0;
70     }
71
72                 CMAC_Final(c->cmac_ctx, mac, &mac_size);
73
74     memcpy(md, mac, c->dgst_size);
75     return 1;
76 }
77
78 int omac_imit_copy(EVP_MD_CTX *to, const EVP_MD_CTX *from)
79 {
80     OMAC_CTX *c_to = EVP_MD_CTX_md_data(to);
81                 const OMAC_CTX *c_from = EVP_MD_CTX_md_data(from);
82
83     if (c_from && c_to) {
84                         c_to->dgst_size  = c_from->dgst_size;
85                         c_to->cipher_nid = c_from->cipher_nid;
86                         c_to->key_set    = c_from->key_set;
87     }
88                 else
89                 {
90                         return 0;
91                 }
92                 return CMAC_CTX_copy(c_to->cmac_ctx, c_from->cmac_ctx);
93 }
94
95 /* Clean up imit ctx */
96 int omac_imit_cleanup(EVP_MD_CTX *ctx)
97 {
98     OMAC_CTX *c = EVP_MD_CTX_md_data(ctx);
99
100                 if (c)
101                 {
102                         CMAC_CTX_free(c->cmac_ctx);
103             memset(EVP_MD_CTX_md_data(ctx), 0, sizeof(OMAC_CTX));
104                 }
105     return 1;
106 }
107
108 static int omac_key(OMAC_CTX *c, const EVP_CIPHER *cipher, const unsigned char *key, size_t key_size)
109 {
110         int ret = 0;
111
112         c->cmac_ctx = CMAC_CTX_new();
113         if (c->cmac_ctx == NULL)
114         {
115                 GOSTerr(GOST_F_OMAC_KEY, ERR_R_MALLOC_FAILURE);
116                 return 0;
117         }
118
119         ret = CMAC_Init(c->cmac_ctx, key, key_size, cipher, NULL);
120         if (ret > 0)
121         {
122                 c->key_set = 1;
123         }
124         return 1;
125 }                                               
126
127 int omac_imit_ctrl(EVP_MD_CTX *ctx, int type, int arg, void *ptr)
128 {
129     switch (type) {
130     case EVP_MD_CTRL_KEY_LEN:
131         *((unsigned int *)(ptr)) = 32;
132         return 1;
133     case EVP_MD_CTRL_SET_KEY:
134                                 {
135                                         OMAC_CTX *c = EVP_MD_CTX_md_data(ctx);
136                                         const EVP_CIPHER *cipher = EVP_get_cipherbynid(c->cipher_nid);
137
138                                         if (cipher == NULL)
139                                         {
140                                                 GOSTerr(GOST_F_OMAC_IMIT_CTRL, GOST_R_CIPHER_NOT_FOUND);
141                                         }
142
143                                         if (EVP_MD_meth_get_init(EVP_MD_CTX_md(ctx)) (ctx) <= 0) {
144                                                 GOSTerr(GOST_F_OMAC_IMIT_CTRL, GOST_R_MAC_KEY_NOT_SET);
145                                                 return 0;
146                                         }
147                                         EVP_MD_CTX_set_flags(ctx, EVP_MD_CTX_FLAG_NO_INIT);
148
149                                         if (c->key_set)
150                                         {
151                                                 GOSTerr(GOST_F_OMAC_IMIT_CTRL, GOST_R_BAD_ORDER);
152                                                 return 0;
153                                         }
154
155                                         if (arg == 0) {
156                                                 struct gost_mac_key *key = (struct gost_mac_key *)ptr;
157                                                 return omac_key(c, cipher, key->key, 32);
158
159                                         } else if (arg == 32) {
160                                                 return omac_key(c, cipher, ptr, 32);
161                                         }
162                                         GOSTerr(GOST_F_OMAC_IMIT_CTRL, GOST_R_INVALID_MAC_KEY_SIZE);
163                                         return 0;
164                                 }
165     case EVP_MD_CTRL_MAC_LEN:
166         {
167                                         OMAC_CTX *c = EVP_MD_CTX_md_data(ctx);
168                                         switch (c->cipher_nid)
169                                         {
170                                                 case NID_magma_cbc:
171             if (arg < 1 || arg > 8) {
172                 GOSTerr(GOST_F_OMAC_IMIT_CTRL, GOST_R_INVALID_MAC_SIZE);
173                 return 0;
174             }
175             c->dgst_size = arg;
176                                                 break;
177                                                 case NID_grasshopper_cbc:
178             if (arg < 1 || arg > 16) {
179                 GOSTerr(GOST_F_OMAC_IMIT_CTRL, GOST_R_INVALID_MAC_SIZE);
180                 return 0;
181             }
182             c->dgst_size = arg;
183                                                 break;
184                                                 default:
185                                                 return 0;
186                                         }
187           return 1;
188         }
189
190     default:
191         return 0;
192     }
193 }
194
195 static EVP_MD *_hidden_magma_mac_md = NULL;
196
197 EVP_MD *magma_omac(void)
198 {
199     if (_hidden_magma_mac_md == NULL) {
200         EVP_MD *md;
201
202         if ((md = EVP_MD_meth_new(NID_magma_mac, NID_undef)) == NULL
203             || !EVP_MD_meth_set_result_size(md, 4)
204             || !EVP_MD_meth_set_input_blocksize(md, 8)
205             || !EVP_MD_meth_set_app_datasize(md, sizeof(OMAC_CTX))
206             || !EVP_MD_meth_set_flags(md, 0)
207             || !EVP_MD_meth_set_init(md, magma_imit_init)
208             || !EVP_MD_meth_set_update(md, omac_imit_update)
209             || !EVP_MD_meth_set_final(md, omac_imit_final)
210             || !EVP_MD_meth_set_copy(md, omac_imit_copy)
211             || !EVP_MD_meth_set_cleanup(md, omac_imit_cleanup)
212             || !EVP_MD_meth_set_ctrl(md, omac_imit_ctrl)) {
213             EVP_MD_meth_free(md);
214             md = NULL;
215         }
216        _hidden_magma_mac_md = md;
217     }
218     return _hidden_magma_mac_md;
219 }
220
221 void magma_omac_destroy(void)
222 {
223     EVP_MD_meth_free(_hidden_magma_mac_md);
224     _hidden_magma_mac_md = NULL;
225 }
226
227 static EVP_MD *_hidden_grasshopper_mac_md = NULL;
228
229 EVP_MD *grasshopper_omac(void)
230 {
231     if (_hidden_grasshopper_mac_md == NULL) {
232         EVP_MD *md;
233
234         if ((md = EVP_MD_meth_new(NID_grasshopper_mac, NID_undef)) == NULL
235             || !EVP_MD_meth_set_result_size(md, 4)
236             || !EVP_MD_meth_set_input_blocksize(md, 8)
237             || !EVP_MD_meth_set_app_datasize(md, sizeof(OMAC_CTX))
238             || !EVP_MD_meth_set_flags(md, 0)
239             || !EVP_MD_meth_set_init(md, grasshopper_imit_init)
240             || !EVP_MD_meth_set_update(md, omac_imit_update)
241             || !EVP_MD_meth_set_final(md, omac_imit_final)
242             || !EVP_MD_meth_set_copy(md, omac_imit_copy)
243             || !EVP_MD_meth_set_cleanup(md, omac_imit_cleanup)
244             || !EVP_MD_meth_set_ctrl(md, omac_imit_ctrl)) {
245             EVP_MD_meth_free(md);
246             md = NULL;
247         }
248        _hidden_grasshopper_mac_md = md;
249     }
250     return _hidden_grasshopper_mac_md;
251 }
252
253 void grasshopper_omac_destroy(void)
254 {
255     EVP_MD_meth_free(_hidden_grasshopper_mac_md);
256     _hidden_grasshopper_mac_md = NULL;
257 }
258