HomeSort by relevance Sort by last modified time
    Searched full:keybits (Results 1 - 12 of 12) sorted by null

  /external/webkit/Source/JavaScriptCore/wtf/
BloomFilter.h 34 // Counting bloom filter with k=2 and 8 bit counters. Uses 2^keyBits bytes of memory.
36 // keys and m is the table size (==2^keyBits).
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)
93 template <unsigned keyBits>
94 inline void BloomFilter<keyBits>::remove(unsigned hash
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/openssl/
PEMUtilities.java 174 int keyBits = 128;
177 keyBits = 40;
181 keyBits = 64;
183 sKey = getKey(password, alg, keyBits / 8, iv);
186 paramSpec = new RC2ParameterSpec(keyBits);
190 paramSpec = new RC2ParameterSpec(keyBits, iv);
203 int keyBits;
206 keyBits = 128;
210 keyBits = 192;
214 keyBits = 256
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
X509PublicKey.java 49 buf.append(", params unparsed, unparsed keybits = \n");
  /external/openssh/
auth-rsa.c 187 int keybits; local
229 keybits = BN_num_bits(key->rsa->n);
230 if (keybits < 0 || bits != (u_int)keybits)
auth1.c 166 int keybits, authenticated = 0; local
184 keybits = BN_num_bits(client_host_key->rsa->n);
185 if (keybits < 0 || bits != (u_int)keybits) {
authfd.c 316 int keybits; local
337 keybits = BN_num_bits(key->rsa->n);
338 if (keybits < 0 || bits != (u_int)keybits)
rijndael.c     [all...]
  /external/openssl/crypto/aes/
aes_wrap.c 143 int AES_wrap_unwrap_test(const unsigned char *kek, int keybits,
155 if (AES_set_encrypt_key(kek, keybits, &wctx))
164 if (AES_set_decrypt_key(kek, keybits, &wctx))
  /external/openssl/crypto/rsa/
rsa_err.c 156 {ERR_REASON(RSA_R_INVALID_KEYBITS) ,"invalid keybits"},
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_cipher.h 127 int keyBits;
  /external/ipsec-tools/src/racoon/missing/crypto/rijndael/
rijndael-alg-fst.c 38 * The number of calculations depends on keyBits and blockBits
  /external/dropbear/libtomcrypt/src/ciphers/
anubis.c     [all...]

Completed in 699 milliseconds