Home | History | Annotate | Download | only in krb5

Lines Matching refs:checksum

57  * checksum according to section 5. of draft-brezak-win2k-krb-rc4-hmac-03.txt
66 Checksum *result)
71 Checksum ksign_c;
82 ksign_c.checksum.length = sizeof(ksign_c_data);
83 ksign_c.checksum.data = ksign_c_data;
91 kb.keyvalue = ksign_c.checksum;
134 Checksum k1_c, k2_c, k3_c, cksum;
147 k1_c.checksum.length = sizeof(k1_c_data);
148 k1_c.checksum.data = k1_c_data;
156 k2_c.checksum.length = sizeof(k2_c_data);
157 k2_c.checksum.data = k2_c_data;
160 kb.keyvalue = k2_c.checksum;
162 cksum.checksum.length = 16;
163 cksum.checksum.data = data;
170 kb.keyvalue = k1_c.checksum;
172 k3_c.checksum.length = sizeof(k3_c_data);
173 k3_c.checksum.data = k3_c_data;
187 if (!EVP_CipherInit_ex(ctx, EVP_rc4(), NULL, k3_c.checksum.data, NULL, 1))
212 Checksum k1_c, k2_c, k3_c, cksum;
226 k1_c.checksum.length = sizeof(k1_c_data);
227 k1_c.checksum.data = k1_c_data;
235 k2_c.checksum.length = sizeof(k2_c_data);
236 k2_c.checksum.data = k2_c_data;
239 kb.keyvalue = k1_c.checksum;
241 k3_c.checksum.length = sizeof(k3_c_data);
242 k3_c.checksum.data = k3_c_data;
255 if (!EVP_CipherInit_ex(ctx, EVP_rc4(), NULL, k3_c.checksum.data, NULL, 0))
265 kb.keyvalue = k2_c.checksum;
267 cksum.checksum.length = 16;
268 cksum.checksum.data = cksum_data;
278 if (ct_memcmp (cksum.checksum.data, data, 16) != 0) {
342 Checksum res;
348 res.checksum.data = out->data;
349 res.checksum.length = out->length;