HomeSort by relevance Sort by last modified time
    Searched refs:hmac_key (Results 1 - 3 of 3) sorted by null

  /external/openssl/crypto/evp/
e_rc4_hmac_md5.c 229 unsigned char hmac_key[64]; local
231 memset (hmac_key,0,sizeof(hmac_key));
233 if (arg > (int)sizeof(hmac_key)) {
236 MD5_Final(hmac_key,&key->head);
238 memcpy(hmac_key,ptr,arg);
241 for (i=0;i<sizeof(hmac_key);i++)
242 hmac_key[i] ^= 0x36; /* ipad */
244 MD5_Update(&key->head,hmac_key,sizeof(hmac_key));
    [all...]
e_aes_cbc_hmac_sha1.c 290 unsigned char hmac_key[64]; local
292 memset (hmac_key,0,sizeof(hmac_key));
294 if (arg > (int)sizeof(hmac_key)) {
297 SHA1_Final(hmac_key,&key->head);
299 memcpy(hmac_key,ptr,arg);
302 for (i=0;i<sizeof(hmac_key);i++)
303 hmac_key[i] ^= 0x36; /* ipad */
305 SHA1_Update(&key->head,hmac_key,sizeof(hmac_key));
    [all...]
  /external/openssl/apps/
dgst.c 128 char *hmac_key=NULL; local
222 hmac_key = "etaonrishdlcupfm";
227 hmac_key=*++argv;
345 if ((!!mac_name + !!keyfile + !!hmac_key) > 1)
410 if (hmac_key)
413 (unsigned char *)hmac_key, -1);

Completed in 2535 milliseconds