Searched refs:hash (Results 151 - 175 of 1525) sorted by relevance

1234567891011>>

/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dsha1-prf.c35 u8 hash[SHA1_MAC_LEN]; local
57 hash))
59 os_memcpy(&buf[pos], hash, plen);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
H A DDSABase.java50 byte[] hash = new byte[digest.getDigestSize()];
52 digest.doFinal(hash, 0);
56 BigInteger[] sig = signer.generateSignature(hash);
70 byte[] hash = new byte[digest.getDigestSize()];
72 digest.doFinal(hash, 0);
85 return signer.verifySignature(hash, sig[0], sig[1]);
/external/chromium/chrome/common/extensions/docs/js/
H A Dsample_search.js28 window.location.hash = searchinput.value;
80 if (window.location.hash.length > 1) {
81 var hash = window.location.hash.substring(1);
82 var elem = document.getElementById(hash);
86 setFilter(hash);
/external/chromium_org/third_party/cld/base/
H A Dstl_decl_msvc.h75 struct hash;
78 class HashFcn = hash<Key> >
82 class HashFcn = hash<Key> >
86 class HashFcn = hash<Key> >
90 class HashFcn = hash<Key> >
96 using msvchash::hash;
/external/dropbear/libtomcrypt/src/headers/
H A Dtomcrypt_hash.h149 /** hash descriptor */
151 /** name of hash */
164 /** Init a hash state
165 @param hash The hash to initialize
168 int (*init)(hash_state *hash);
170 @param hash The hash state
171 @param in The data to hash
175 int (*process)(hash_state *hash, cons
[all...]
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/crypto/
H A DSHA1ImplTest.java66 int[] words = new int[INDEX +6]; // working array to compute hash
70 int[] hash = {0xA9993E36, 0x4706816A, 0xBA3E2571, 0x7850C26C, 0x9CD0D89D };
91 hash[k] == hash1[k] );
93 assertTrue("false2: k=" + k + " j=" + Integer.toHexString(j), hash[k] == j );
107 int[] hash = {0x84983e44, 0x1c3bd26e, 0xbaae4aa1, 0xf95129e5, 0xe54670f1 };
119 assertTrue("false: k=" + k + " j=" + Integer.toHexString(j), hash[k] == j );
126 * for four different cases of infilling internal buffer and computing intermediate hash.
131 int[] hash = {0x34aa973c, 0xd4c4daa4, 0xf61eeb2b, 0xdbad2731, 0x6534016f };
157 hash[k] == j );
166 private void alternateHash(int[] bufW, int[] hash) { argument
[all...]
/external/apache-http/src/org/apache/http/
H A DHttpHost.java207 int hash = LangUtils.HASH_SEED;
208 hash = LangUtils.hashCode(hash, this.lcHostname);
209 hash = LangUtils.hashCode(hash, this.port);
210 hash = LangUtils.hashCode(hash, this.schemeName);
211 return hash;
/external/apache-http/src/org/apache/http/message/
H A DBasicHeaderElement.java213 int hash = LangUtils.HASH_SEED;
214 hash = LangUtils.hashCode(hash, this.name);
215 hash = LangUtils.hashCode(hash, this.value);
217 hash = LangUtils.hashCode(hash, this.parameters[i]);
219 return hash;
/external/chromium_org/chrome/browser/spellchecker/
H A Dmisspelling.h7 // Stores the spellcheck suggestion, its uint32 hash identifier, and user's
27 // misspelling.hash = GenerateRandomHash();
38 uint32 hash);
62 // The hash that identifies the misspelling.
63 uint32 hash; member in class:Misspelling
/external/chromium_org/remoting/host/
H A Dpin_hash_unittest.cc17 std::string hash = MakeHostPinHash("Host ID", "1234"); local
18 ASSERT_EQ("hmac:bk6RVRFLpLO89mr4QPHSg8CemUUtI90r2F0VfvTmWLI=", hash);
H A Dpin_hash.h12 // Creates a Me2Me shared-secret hash, consisting of the hash method, and the
16 // Extracts the hash function from the given hash, uses it to calculate the
17 // hash of the given host ID and PIN, and compares that hash to the given hash.
19 bool VerifyHostPinHash(const std::string& hash,
/external/chromium_org/third_party/skia/include/gpu/
H A DGrKey.h17 explicit GrKey(Hash hash) : fHash(hash) {} argument
/external/skia/include/gpu/
H A DGrKey.h17 explicit GrKey(Hash hash) : fHash(hash) {} argument
/external/openssl/crypto/lhash/
H A Dlhash.c59 /* Code for dynamic hash table routines
126 ret->hash=((h == NULL)?(LHASH_HASH_FN_TYPE)lh_strhash:h);
181 unsigned long hash; local
189 rn=getrn(lh,data,&hash);
201 nn->hash=hash;
219 unsigned long hash; local
224 rn=getrn(lh,data,&hash);
250 unsigned long hash; local
255 rn=getrn(lh,data,&hash);
314 unsigned long hash,nni; local
408 unsigned long hash,nn; local
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/signers/
H A DRSADigestSigner.java150 byte[] hash = new byte[digest.getDigestSize()];
151 digest.doFinal(hash, 0);
155 byte[] data = derEncode(hash);
176 byte[] hash = new byte[digest.getDigestSize()];
178 digest.doFinal(hash, 0);
186 expected = derEncode(hash);
199 int sigOffset = sig.length - hash.length - 2;
200 int expectedOffset = expected.length - hash.length - 2;
207 for (int i = 0; i < hash.length; i++)
231 byte[] hash)
230 derEncode( byte[] hash) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dhash_table.c26 * \brief Implementation of a generic, opaque hash table data type.
41 hash_func_t hash; member in struct:hash_table
57 hash_table_ctor(unsigned num_buckets, hash_func_t hash, argument
71 ht->hash = hash;
114 const unsigned hash_value = (*ht->hash)(key);
140 const unsigned hash_value = (*ht->hash)(key);
155 const unsigned hash_value = (*ht->hash)(key);
212 unsigned hash = 5381; local
216 hash
[all...]
/external/mesa3d/src/mesa/program/
H A Dhash_table.c26 * \brief Implementation of a generic, opaque hash table data type.
41 hash_func_t hash; member in struct:hash_table
57 hash_table_ctor(unsigned num_buckets, hash_func_t hash, argument
71 ht->hash = hash;
114 const unsigned hash_value = (*ht->hash)(key);
140 const unsigned hash_value = (*ht->hash)(key);
155 const unsigned hash_value = (*ht->hash)(key);
212 unsigned hash = 5381; local
216 hash
[all...]
/external/v8/src/
H A Dhashmap.h43 // initial_capacity is the size of the initial hash map;
49 // HashMap entries are (key, value, hash) triplets.
55 uint32_t hash; // the full hash value for key member in struct:v8::internal::TemplateHashMapImpl::Entry
61 // corresponding key, key hash, and NULL value.
63 Entry* Lookup(void* key, uint32_t hash, bool insert);
66 void Remove(void* key, uint32_t hash);
68 // Empties the hash map (occupancy() == 0).
97 Entry* Probe(void* key, uint32_t hash);
120 void* key, uint32_t hash, boo
119 Lookup( void* key, uint32_t hash, bool insert) argument
149 Remove(void* key, uint32_t hash) argument
240 Probe(void* key, uint32_t hash) argument
[all...]
/external/dropbear/libtomcrypt/src/prngs/
H A Dyarrow.c44 /* these are the default hash/cipher combo used */
91 prng->yarrow.hash = register_hash(&sha256_desc);
93 prng->yarrow.hash = register_hash(&sha512_desc);
95 prng->yarrow.hash = register_hash(&tiger_desc);
97 prng->yarrow.hash = register_hash(&sha1_desc);
99 prng->yarrow.hash = register_hash(&rmd320_desc);
101 prng->yarrow.hash = register_hash(&rmd256_desc);
103 prng->yarrow.hash = register_hash(&rmd160_desc);
105 prng->yarrow.hash = register_hash(&rmd128_desc);
107 prng->yarrow.hash
[all...]
/external/valgrind/main/callgrind/
H A Dcontext.c113 new_idx = (UInt) (curr->hash % new_size);
142 UWord hash = 0; local
145 hash = (hash<<7) + (hash>>25) + (UWord)(*fn);
150 return hash;
154 static Bool is_cxt(UWord hash, fn_node** fn, Context* cxt) argument
159 if (hash != cxt->hash) return False;
179 UWord hash; local
239 UWord hash; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMNamedFlowCollection.cpp77 static unsigned hash(PassRefPtr<NamedFlow> key) { return DefaultHash<String>::Hash::hash(key->name()); } function in struct:WebCore::DOMNamedFlowCollection::DOMNamedFlowHashFunctions
84 static unsigned hash(const String& key) { return DefaultHash<String>::Hash::hash(key); } function in struct:WebCore::DOMNamedFlowCollection::DOMNamedFlowHashTranslator
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
H A DHmacKeyParams.h43 Algorithm* hash();
H A DHmacParams.h43 Algorithm* hash();
H A DRsaSsaParams.h43 Algorithm* hash();
/external/chromium_org/third_party/WebKit/Source/platform/
H A DCookie.h65 static unsigned hash(Cookie key) function in struct:WebCore::CookieHash
67 return StringHash::hash(key.name) + StringHash::hash(key.domain) + StringHash::hash(key.path) + key.secure;

Completed in 1162 milliseconds

1234567891011>>