HomeSort by relevance Sort by last modified time
    Searched full:ipad (Results 1 - 25 of 28) sorted by null

1 2

  /external/srtp/crypto/hash/
hmac.c 114 uint8_t ipad[64]; local
124 * set values of ipad and opad by exoring the key into the
128 ipad[i] = key[i] ^ 0x36;
131 /* set the rest of ipad, opad to constant values */
133 ipad[i] = 0x36;
137 debug_print(mod_hmac, "ipad: %s", octet_string_hex_string(ipad, 64));
142 /* hash ipad ^ key */
143 sha1_update(&state->init_ctx, ipad, 64);
  /external/wpa_supplicant_8/src/crypto/
md5-non-fips.c 36 u8 k_pad[64]; /* padding - key XORd with ipad/opad */
59 * MD5(K XOR opad, MD5(K XOR ipad, text))
62 * ipad is the byte 0x36 repeated 64 times
66 /* start out by storing key in ipad */
70 /* XOR key with ipad values */
md5.c 35 u8 k_pad[64]; /* padding - key XORd with ipad/opad */
58 * MD5(K XOR opad, MD5(K XOR ipad, text))
61 * ipad is the byte 0x36 repeated 64 times
65 /* start out by storing key in ipad */
69 /* XOR key with ipad values */
sha1.c 35 unsigned char k_pad[64]; /* padding - key XORd with ipad/opad */
58 * SHA1(K XOR opad, SHA1(K XOR ipad, text))
61 * ipad is the byte 0x36 repeated 64 times
65 /* start out by storing key in ipad */
68 /* XOR key with ipad values */
sha256.c 34 unsigned char k_pad[64]; /* padding - key XORd with ipad/opad */
56 * SHA256(K XOR opad, SHA256(K XOR ipad, text))
59 * ipad is the byte 0x36 repeated 64 times
63 /* start out by storing key in ipad */
66 /* XOR key with ipad values */
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/macs/
HMac.java 14 * H(K XOR opad, H(K XOR ipad, text))
19 private final static byte IPAD = (byte)0x36;
137 inputPad[i] ^= IPAD;
  /external/webkit/Tools/MiniBrowser/qt/
useragentlist.txt 8 Mozilla/5.0(iPad; U; CPU iPhone OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B314 Safari/531.21.10
  /external/webkit/Tools/QtTestBrowser/
useragentlist.txt 8 Mozilla/5.0(iPad; U; CPU iPhone OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B314 Safari/531.21.10
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
crypto-sha1.js 113 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);
crypto-md5.js 167 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/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
crypto-sha1.js 113 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);
crypto-md5.js 167 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/chrome/browser/resources/touch_ntp/
newtab.html 8 Note that this means apps will be reflowed when rotated (like iPad).
  /external/wpa_supplicant/
md5.c 34 u8 k_pad[64]; /* padding - key XORd with ipad/opad */
56 * MD5(K XOR opad, MD5(K XOR ipad, text))
59 * ipad is the byte 0x36 repeated 64 times
63 /* start out by storing key in ipad */
67 /* XOR key with ipad values */
sha256.c 34 unsigned char k_pad[64]; /* padding - key XORd with ipad/opad */
56 * SHA256(K XOR opad, SHA256(K XOR ipad, text))
59 * ipad is the byte 0x36 repeated 64 times
63 /* start out by storing key in ipad */
66 /* XOR key with ipad values */
sha1.c 35 unsigned char k_pad[64]; /* padding - key XORd with ipad/opad */
57 * SHA1(K XOR opad, SHA1(K XOR ipad, text))
60 * ipad is the byte 0x36 repeated 64 times
64 /* start out by storing key in ipad */
67 /* XOR key with ipad values */
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
md5.c 34 u8 k_pad[64]; /* padding - key XORd with ipad/opad */
56 * MD5(K XOR opad, MD5(K XOR ipad, text))
59 * ipad is the byte 0x36 repeated 64 times
63 /* start out by storing key in ipad */
67 /* XOR key with ipad values */
sha256.c 34 unsigned char k_pad[64]; /* padding - key XORd with ipad/opad */
56 * SHA256(K XOR opad, SHA256(K XOR ipad, text))
59 * ipad is the byte 0x36 repeated 64 times
63 /* start out by storing key in ipad */
66 /* XOR key with ipad values */
sha1.c 35 unsigned char k_pad[64]; /* padding - key XORd with ipad/opad */
57 * SHA1(K XOR opad, SHA1(K XOR ipad, text))
60 * ipad is the byte 0x36 repeated 64 times
64 /* start out by storing key in ipad */
67 /* XOR key with ipad values */
  /external/chromium/chrome/browser/resources/ntp4/
new_tab.html 7 Note that this means apps will be reflowed when rotated (like iPad).
  /external/chromium/crypto/
hmac_win.cc 52 // XOR key0 with ipad.
  /frameworks/base/docs/html/resources/articles/
multitasking-android-way.jd 32 <p>Mobile devices don't have the luxury of swap space, so have fairly hard limits on memory use. Robert Love has <a href="http://blog.rlove.org/2010/04/why-ipad-and-iphone-dont-support.html">a very good article</a> covering the topic.</p>
  /external/chromium/chrome/browser/resources/touch_ntp/standalone/
standalone_hack.js 375 if (/iPhone|iPod|iPad/.test(navigator.userAgent) &&
  /packages/apps/Browser/src/com/android/browser/
BrowserSettings.java 69 private static final String IPAD_USERAGENT = "Mozilla/5.0 (iPad; U; " +
  /packages/apps/Browser/res/values/
strings.xml     [all...]

Completed in 586 milliseconds

1 2