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

  /external/chromium_org/third_party/openssl/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 462 unsigned char hmac_key[64]; local
464 memset (hmac_key,0,sizeof(hmac_key));
466 if (arg > (int)sizeof(hmac_key)) {
469 SHA1_Final(hmac_key,&key->head);
471 memcpy(hmac_key,ptr,arg);
474 for (i=0;i<sizeof(hmac_key);i++)
475 hmac_key[i] ^= 0x36; /* ipad */
477 SHA1_Update(&key->head,hmac_key,sizeof(hmac_key));
    [all...]
  /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 463 unsigned char hmac_key[64]; local
465 memset (hmac_key,0,sizeof(hmac_key));
467 if (arg > (int)sizeof(hmac_key)) {
470 SHA1_Final(hmac_key,&key->head);
472 memcpy(hmac_key,ptr,arg);
475 for (i=0;i<sizeof(hmac_key);i++)
476 hmac_key[i] ^= 0x36; /* ipad */
478 SHA1_Update(&key->head,hmac_key,sizeof(hmac_key));
    [all...]
  /external/chromium_org/third_party/openssl/openssl/apps/
dgst.c 128 char *hmac_key=NULL; local
220 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);
  /external/openssl/apps/
dgst.c 128 char *hmac_key=NULL; local
220 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 60 milliseconds