Home
last modified time | relevance | path

Searched refs:ipad (Results 1 – 13 of 13) sorted by relevance

/external/smack/src/org/xbill/DNS/utils/
DHMAC.java19 private byte [] ipad, opad; field in HMAC
32 ipad = new byte[blockLength]; in init()
35 ipad[i] = (byte) (key[i] ^ IPAD); in init()
39 ipad[i] = IPAD; in init()
42 digest.update(ipad); in init()
171 digest.update(ipad); in clear()
/external/srtp/crypto/hash/
Dhmac.c114 uint8_t ipad[64]; in hmac_init() local
128 ipad[i] = key[i] ^ 0x36; in hmac_init()
133 ipad[i] = 0x36; in hmac_init()
137 debug_print(mod_hmac, "ipad: %s", octet_string_hex_string(ipad, 64)); in hmac_init()
143 sha1_update(&state->init_ctx, ipad, 64); in hmac_init()
/external/chromium_org/third_party/libsrtp/srtp/crypto/hash/
Dhmac.c114 uint8_t ipad[64]; in hmac_init() local
128 ipad[i] = key[i] ^ 0x36; in hmac_init()
133 ipad[i] = 0x36; in hmac_init()
137 debug_print(mod_hmac, "ipad: %s", octet_string_hex_string(ipad, 64)); in hmac_init()
143 sha1_update(&state->init_ctx, ipad, 64); in hmac_init()
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
Dcrypto-sha1.js113 var ipad = Array(16), opad = Array(16);
116 ipad[i] = bkey[i] ^ 0x36363636;
120 var hash = core_sha1(ipad.concat(str2binb(data)), 512 + data.length * chrsz);
Dcrypto-md5.js167 var ipad = Array(16), opad = Array(16);
170 ipad[i] = bkey[i] ^ 0x36363636;
174 var hash = core_md5(ipad.concat(str2binl(data)), 512 + data.length * chrsz);
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
Dcrypto-sha1.js113 var ipad = Array(16), opad = Array(16);
116 ipad[i] = bkey[i] ^ 0x36363636;
120 var hash = core_sha1(ipad.concat(str2binb(data)), 512 + data.length * chrsz);
Dcrypto-md5.js167 var ipad = Array(16), opad = Array(16);
170 ipad[i] = bkey[i] ^ 0x36363636;
174 var hash = core_md5(ipad.concat(str2binl(data)), 512 + data.length * chrsz);
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
Dcrypto-sha1.js113 var ipad = Array(16), opad = Array(16);
116 ipad[i] = bkey[i] ^ 0x36363636;
120 var hash = core_sha1(ipad.concat(str2binb(data)), 512 + data.length * chrsz);
Dcrypto-md5.js167 var ipad = Array(16), opad = Array(16);
170 ipad[i] = bkey[i] ^ 0x36363636;
174 var hash = core_md5(ipad.concat(str2binl(data)), 512 + data.length * chrsz);
/external/chromium_org/third_party/tlslite/tlslite/
Dmathtls.py126 ipad = b"\x36" * repeat
129 self.ihash = self.digestmod(k + ipad)
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
Dsctp_auth.c966 uint8_t ipad[128], opad[128]; /* keyed hash inner/outer pads */ local
992 bzero(ipad, blocklen);
994 bcopy(key, ipad, keylen);
999 ipad[i] ^= 0x36;
1005 sctp_hmac_update(hmac_algo, &ctx, ipad, blocklen);
1026 uint8_t ipad[128], opad[128]; /* keyed hash inner/outer pads */ local
1052 bzero(ipad, blocklen);
1054 bcopy(key, ipad, keylen);
1059 ipad[i] ^= 0x36;
1065 sctp_hmac_update(hmac_algo, &ctx, ipad, blocklen);
/external/qemu/target-i386/
Dhax-interface.h107 uint32 ipad; member
/external/chromium_org/third_party/smhasher/src/
Dmd5.cpp15 unsigned char ipad[64]; /*!< HMAC: inner padding */ member