/dalvik/libcore/luni/src/main/java/java/util/ |
AbstractSet.java | 68 * Returns the hash code for this set. Two set which are equal must return 69 * the same value. This implementation calculates the hash code by adding 70 * each element's hash code. 72 * @return the hash code of this set.
|
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/ |
SHAOutputStream.java | 24 * This class implements the Secure Hash Algorithm, SHA-1. The specification can 170 // After the user asks for the hash value, the stream is put back to the 184 byte[] hash = new byte[HashSizeInBytes]; 191 hash[i * 4] = (byte) (HConstants[i] >>> 24 & 0xff); 192 hash[i * 4 + 1] = (byte) (HConstants[i] >>> 16 & 0xff); 193 hash[i * 4 + 2] = (byte) (HConstants[i] >>> 8 & 0xff); 194 hash[i * 4 + 3] = (byte) (HConstants[i] & 0xff); 196 // After the user asks for the hash value, the stream is put back to the 199 return hash; 210 byte[] hash = new byte[HashSizeInBytes] [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/ |
DSA.java | 21 * sign the passed in message (usually the output of a hash function).
|
Signer.java | 4 * Generic signer interface for hash based and message recovery signers.
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/generators/ |
OpenSSLPBEParametersGenerator.java | 43 * the derived key function, the ith hash of the password and the salt. 84 * @exception IllegalArgumentException if the key length larger than the base hash size. 104 * @exception IllegalArgumentException if keySize + ivSize is larger than the base hash size. 124 * @exception IllegalArgumentException if the key length larger than the base hash size.
|
/external/apache-http/src/org/apache/http/auth/ |
BasicUserPrincipal.java | 62 int hash = LangUtils.HASH_SEED; local 63 hash = LangUtils.hashCode(hash, this.username); 64 return hash;
|
/external/bluetooth/glib/gio/fen/ |
fen-dump.c | 61 /* ------------------ fdata port hash --------------------*/ 71 dump_hash (GHashTable* hash, gpointer user_data) 74 if (g_hash_table_size (hash) > 0) { 75 g_hash_table_foreach (hash, dump_hash_cb, user_data);
|
/external/bluetooth/glib/glib/ |
ghash.h | 58 /* Hash tables 110 /* keeping hash tables alive */ 123 /* Hash Functions 133 /* This "hash" function will just return the key's address as an
|
/external/dropbear/libtomcrypt/notes/ |
tech0006.txt | 80 The encryption works by finding the X9.63 shared secret and hashing it. The hash is then simply XOR'ed against the message [which must be at most the size 81 of the hash digest]. The format of the encrypted text is as follows 84 hashOID OBJECT IDENTIFIER, -- The OID of the hash used 86 skey OCTET STRING -- The encrypted text (which the hash was XOR'ed against)
|
/external/dropbear/libtomcrypt/src/misc/crypt/ |
crypt_hash_descriptor.c | 15 Stores the hash descriptor table, Tom St Denis
|
/external/elfutils/libasm/ |
symbolhash.h | 17 /* Definitions for the symbol hash table. */
|
/external/elfutils/libdw/ |
dwarf_abbrev_hash.c | 1 /* Implementation of hash table for DWARF .debug_abbrev section content.
|
dwarf_abbrev_hash.h | 0 /* Hash table for DWARF .debug_abbrev section content.
|
/external/elfutils/src/ |
sectionhash.h | 17 /* Definitions for the section hash table. */
|
symbolhash.h | 17 /* Definitions for the symbol hash table. */
|
versionhash.h | 17 /* Definitions for the symbol hash table. */
|
/external/icu4c/test/intltest/ |
canittst.h | 32 #include "hash.h"
|
/external/openssl/android.testssl/ |
Uss.cnf | 31 subjectKeyIdentifier=hash
|
/external/oprofile/daemon/ |
opd_anon.h | 40 /** hash list */
|
/external/ppp/pppd/ |
Android.mk | 26 openssl-hash.c \
|
/external/qemu/android/skin/ |
image.c | 211 unsigned hash; member in struct:SkinImage 253 skin_image_alloc( SkinImageDesc* desc, unsigned hash ) 264 image->hash = hash; 342 /* simple hash table for images */ 373 /* remove from hash table */ 374 SkinImage** pnode = cache->buckets + (image->hash & (NUM_BUCKETS-1)); 457 if (node->hash == h && skin_image_desc_equal(desc, &node->desc)) 467 skin_image_create( SkinImageDesc* desc, unsigned hash ) 471 node = skin_image_alloc( desc, hash ); 538 unsigned hash; local [all...] |
/external/wpa_supplicant/ |
md5.h | 2 * MD5 hash implementation and interface functions
|
sha256.h | 2 * SHA256 hash implementation and interface functions
|
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/ |
md5.h | 2 * MD5 hash implementation and interface functions
|
sha256.h | 2 * SHA256 hash implementation and interface functions
|