Searched refs:keyBits (Results 1 – 13 of 13) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/wtf/ |
D | BloomFilter.h | 37 template <unsigned keyBits> 40 COMPILE_ASSERT(keyBits <= 16, bloom_filter_key_size); 42 static const size_t tableSize = 1 << keyBits; 43 static const unsigned keyMask = (1 << keyBits) - 1; 82 template <unsigned keyBits> 83 inline void BloomFilter<keyBits>::add(unsigned hash) in add() 93 template <unsigned keyBits> 94 inline void BloomFilter<keyBits>::remove(unsigned hash) in remove() 107 template <unsigned keyBits> 108 inline void BloomFilter<keyBits>::clear() in clear() [all …]
|
/external/wpa_supplicant_8/src/crypto/ |
D | aes-internal.c | 779 int rijndaelKeySetupEnc(u32 rk[], const u8 cipherKey[], int keyBits) in rijndaelKeySetupEnc() argument 789 if (keyBits == 128) { in rijndaelKeySetupEnc() 805 if (keyBits == 192) { in rijndaelKeySetupEnc() 824 if (keyBits == 256) { in rijndaelKeySetupEnc()
|
D | aes-internal-dec.c | 28 static int rijndaelKeySetupDec(u32 rk[], const u8 cipherKey[], int keyBits) in rijndaelKeySetupDec() argument 34 Nr = rijndaelKeySetupEnc(rk, cipherKey, keyBits); in rijndaelKeySetupDec()
|
D | aes_i.h | 123 int rijndaelKeySetupEnc(u32 rk[], const u8 cipherKey[], int keyBits);
|
/external/openssh/ |
D | rijndael.c | 727 static int rijndaelKeySetupEnc(u32 rk[/*4*(Nr + 1)*/], const u8 cipherKey[], int keyBits) { in rijndaelKeySetupEnc() argument 735 if (keyBits == 128) { in rijndaelKeySetupEnc() 755 if (keyBits == 192) { in rijndaelKeySetupEnc() 777 if (keyBits == 256) { in rijndaelKeySetupEnc() 813 rijndaelKeySetupDec(u32 rk[/*4*(Nr + 1)*/], const u8 cipherKey[], int keyBits, in rijndaelKeySetupDec() argument 822 Nr = rijndaelKeySetupEnc(rk, cipherKey, keyBits); in rijndaelKeySetupDec()
|
/external/chromium_org/net/third_party/nss/ssl/ |
D | sslauth.c | 136 *kp0 = ss->sec.keyBits; in SSL_SecurityStatus() 144 if (ss->sec.keyBits == 0) { in SSL_SecurityStatus()
|
D | sslcon.c | 1269 int keyBits, in ssl2_FillInSID() argument 1290 sid->u.ssl2.keyBits = keyBits; in ssl2_FillInSID() 1497 ss->sec.keyBits = sid->u.ssl2.keyBits; in ssl2_CreateSessionCypher() 1545 ssl2_ServerSetupSessionCypher(sslSocket *ss, int cipher, unsigned int keyBits, in ssl2_ServerSetupSessionCypher() argument 1597 if (keyBits != keySize * BPB) { in ssl2_ServerSetupSessionCypher() 1599 SSL_GETPID(), ss->fd, keyBits)); in ssl2_ServerSetupSessionCypher() 1688 keyBits, keyBits - (ckLen<<3), in ssl2_ServerSetupSessionCypher() 3222 unsigned int keyBits; in ssl2_HandleClientSessionKeyMessage() local 3237 keyBits = (data[2] << 8) | data[3]; in ssl2_HandleClientSessionKeyMessage() 3243 SSL_GETPID(), ss->fd, cipher, keyBits, ckLen, ekLen, caLen)); in ssl2_HandleClientSessionKeyMessage() [all …]
|
D | sslsnce.c | 114 /* 1 */ PRUint8 keyBits; member 479 to->u.ssl2.keyBits = from->u.ssl2.keyBits; in ConvertFromSID() 561 to->u.ssl2.keyBits = from->u.ssl2.keyBits; in ConvertToSID()
|
D | sslsecur.c | 946 ss->sec.keyBits = os->sec.keyBits; in ssl_CopySecurityInfo()
|
D | sslimpl.h | 655 int keyBits; member 1131 int keyBits; /* ssl 2 & 3 */ member
|
D | ssl3con.c | 1448 ss->sec.keyBits = pwSpec->cipher_def->key_size * BPB; in ssl3_SetupPendingCipherSpec()
|
/external/dropbear/libtomcrypt/src/ciphers/ |
D | anubis.c | 912 skey->anubis.keyBits = keylen*8; in _anubis_setup() 918 N = skey->anubis.keyBits >> 5; in _anubis_setup()
|
/external/dropbear/libtomcrypt/src/headers/ |
D | tomcrypt_cipher.h | 127 int keyBits; member
|