/external/vboot_reference/tests/futility/ |
test_create.sh | 17 for hash in sha1 sha256 sha512; do 18 ${FUTILITY} --vb1 create --hash_alg "${hash}" \ 19 "${TESTKEYS}/key_${sig}.pem" "${TMP}_key_${sig}.${hash}" 20 cmp "${TESTKEYS}/key_${sig}.${hash}.vbprivk" \ 21 "${TMP}_key_${sig}.${hash}.vbprivk" 22 cmp "${TESTKEYS}/key_${sig}.${hash}.vbpubk" \ 23 "${TMP}_key_${sig}.${hash}.vbpubk" 31 for hash in sha1 sha256 sha512; do 32 ${FUTILITY} --vb21 create --hash_alg "${hash}" \ 33 "${TESTKEYS}/key_${sig}.pem" "${TMP}_key_${sig}.${hash}" [all...] |
/external/e2fsprogs/lib/ext2fs/ |
hashmap.c | 8 uint32_t hash = 5381; local 12 hash = ((hash << 5) + hash) + c; 14 return hash; 25 h->hash = hash_fct; 33 uint32_t hash = h->hash(key, key_len) % h->size; local 39 e->next = h->entries[hash]; 40 h->entries[hash] = e 55 uint32_t hash = h->hash(key, key_len) % h->size; local [all...] |
/external/deqp/framework/delibs/depool/ |
dePoolHash.h | 23 * \brief Memory pool hash class. 45 * \brief Declare a template pool hash class interface. 46 * \param TYPENAME Type name of the declared hash. 50 * This macro declares the interface for a hash. For the implementation of 51 * the hash, see DE_IMPLEMENT_POOL_HASH. Usually this macro is put into the 56 * The functions for operating the hash are: 60 * Hash* Hash_create (deMemPool* pool); 61 * int Hash_getNumElements (const Hash* hash); 62 * Value* Hash_find (Hash* hash, Key key) [all...] |
/device/linaro/bootloader/edk2/SecurityPkg/Library/HashLibTpm2/ |
HashLibTpm2.uni | 2 // Provides hash service using TPM2 device
4 // This library uses TPM2 device to calculate hash. Platform can use PcdTpm2HashMask to
5 // mask some hash calculation.
19 #string STR_MODULE_ABSTRACT #language en-US "Provides hash service using TPM2 device"
21 #string STR_MODULE_DESCRIPTION #language en-US "This library uses TPM2 device to calculate hash. Platform can use PcdTpm2HashMask to mask some hash calculation."
|
/prebuilts/go/darwin-x86/src/crypto/ |
crypto.go | 9 "hash" 14 // Hash identifies a cryptographic hash function that is implemented in another 16 type Hash uint 18 // HashFunc simply returns the value of h so that Hash implements SignerOpts. 19 func (h Hash) HashFunc() Hash { 24 MD4 Hash = 1 + iota // import golang.org/x/crypto/md4 68 // Size returns the length, in bytes, of a digest resulting from the given hash 69 // function. It doesn't require that the hash function in question be linke [all...] |
/prebuilts/go/linux-x86/src/crypto/ |
crypto.go | 9 "hash" 14 // Hash identifies a cryptographic hash function that is implemented in another 16 type Hash uint 18 // HashFunc simply returns the value of h so that Hash implements SignerOpts. 19 func (h Hash) HashFunc() Hash { 24 MD4 Hash = 1 + iota // import golang.org/x/crypto/md4 68 // Size returns the length, in bytes, of a digest resulting from the given hash 69 // function. It doesn't require that the hash function in question be linke [all...] |
/device/linaro/bootloader/arm-trusted-firmware/include/drivers/arm/cryptocell/ |
cc_sec_defs.h | 12 @brief This file contains general hash definitions and types. 23 /*! The hash - SHA2 results in words. */ 27 /*! Definition for hash result array. */
|
/external/llvm/test/tools/llvm-profdata/Inputs/ |
vp-malform.proftext | 2 # Func Hash: 11 # Func Hash: 20 # Func Hash:
|
/build/soong/cc/config/ |
integer_overflow_blacklist.txt | 1 fun:*([Hh]ash|HASH)*
|
/cts/tests/tests/webkit/assets/webkit/ |
test_anchor.html | 7 document.title = self.document.location.hash.substring(1);
|
/external/llvm/test/tools/llvm-readobj/Inputs/ |
gnuhash.so.elf-i386 | |
/toolchain/binutils/binutils-2.27/ld/testsuite/ld-mips-elf/ |
hash1a.d | 2 #ld: -shared --hash-style=sysv
|
/toolchain/binutils/binutils-2.27/bfd/ |
hash.c | 0 /* hash.c -- hash table routines for BFD 30 Hash Tables 32 @cindex Hash tables 33 BFD provides a simple set of hash table functions. Routines 34 are provided to initialize a hash table, to free a hash table, 35 to look up a string in a hash table and optionally create an 36 entry for it, and to traverse a hash table. There is 37 currently no routine to delete an string from a hash table 434 unsigned long hash; local 462 unsigned long hash; local [all...] |
/external/boringssl/src/ssl/test/runner/ |
hkdf.go | 19 "hash" 23 func hkdfExtract(hash func() hash.Hash, salt, ikm []byte) []byte { 25 salt = make([]byte, hash().Size()) 27 hmac := hmac.New(hash, salt) 33 func hkdfExpand(hash func() hash.Hash, prk, info []byte, length int) []byte { 34 hashSize := hash().Size( [all...] |
/external/libmojo/mojo/public/cpp/bindings/lib/ |
hash_util.h | 23 return seed ^ (std::hash<T>()(value) + (seed << 6) + (seed >> 2)); 29 static char Test(decltype(&U::Hash)); 42 size_t Hash(size_t seed, const T& value); 46 static size_t Hash(size_t seed, const T& value) { return value.Hash(seed); } 51 static size_t Hash(size_t seed, const T& value) { 58 static size_t Hash(size_t seed, const std::vector<T>& value) { 68 static size_t Hash(size_t seed, const base::Optional<std::vector<T>>& value) { 72 return Hash(seed, *value); 77 size_t Hash(size_t seed, const T& value) [all...] |
/external/libxml2/python/tests/ |
compareNodes.py | 9 # Testing XML Node comparison and Node hash-value 30 # Next check that the hash function for the objects also works ok 31 if not (hash(foonode1) == hash(foonode2)): 32 print("Error hash values for two equal nodes are different") 34 if not (hash(foonode1) != hash(root)): 35 print("Error hash values for two unequal nodes are not different") 37 if hash(foonode1) == hash(root) [all...] |
/external/scapy/scapy/layers/tls/crypto/ |
hkdf.py | 17 from cryptography.hazmat.primitives.hashes import Hash 23 self.hash = _get_hash(hash_name) 26 h = self.hash 33 h = self.hash 47 h = Hash(self.hash, backend=default_backend()) 50 hash_len = self.hash.digest_size 54 hash_len = self.hash.digest_size 57 h = Hash(self.hash, backend=default_backend() [all...] |
/prebuilts/go/darwin-x86/pkg/darwin_amd64/ |
crypto.a | 15 crypto
|SGOROOTsrccrypto.goHash |