HomeSort by relevance Sort by last modified time
    Searched full:hash (Results 76 - 100 of 15682) sorted by null

1 2 34 5 6 7 8 91011>>

  /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 ?Available<h·2?HashFunc<<~New< 4hash hash.go
58 go19ldhashiostrconv? "".Hash.HashFunc?h?type."".Hash?~r0?Tgclocals·f207267fbf96a0178e8758c6e3e0ce28?Tgclocals·33cdeccccebe80329f1fdbee7f5874cb?Hgofile..$GOROOT/src/crypto/crypto.go?"".Hash.Size?"".digestSizes?$runtime.panicindex?type.string?"".statictmp_0?runtime.gopanic?0runtime.morestack_noctxt?type.int?"".Hash.New?"".hashes?strconv.Itoa?Zgo.string."crypto: requested hash function #"?6go.string." is unavailable"?*runtime.concatstring3?*runtime.convT2Estring?type.hash.Hash?.autotmp_5?Tgclocals·15b76348caca8a511afecadf603e9401?Tgclocals·db9a6544d085c0622e79e6568 (…)
    [all...]
  /prebuilts/go/darwin-x86/pkg/darwin_amd64_race/
crypto.a 15  crypto   |SGOROOTsrccrypto.goHash ?Available<h·2?HashFunc<<~New< 4hash hash.go
58 go19ldhashiostrconv? "".Hash.HashFunc?*runtime.racefuncenter?(runtime.racefuncexit?0runtime.morestack_noctxt?.fp?type.uintptr?h?type."".Hash?~r0?Tgclocals·f207267fbf96a0178e8758c6e3e0ce28?Tgclocals·33cdeccccebe80329f1fdbee7f5874cb?Hgofile..$GOROOT/src/crypto/crypto.go?"".Hash.Size?"".digestSizes? runtime.raceread?$runtime.panicindex?type.string?"".statictmp_0?runtime.gopanic?type.int?.autotmp_3?"".Hash.New?"".hashes?strconv.Itoa?Zgo.string."crypto: requested hash function #"?6go.string." is unavailable"?*runtime.concatstring3?*runtime.convT2Estring?type.hash.Hash?.autotmp_5?.autotmp_7?type.*uint8?.autotmp_8?Tgclocals·cadea2e49003779a155f5f8fb1f0f (…)
    [all...]
  /prebuilts/go/linux-x86/pkg/linux_amd64/
crypto.a 15  crypto   |SGOROOTsrccrypto.goHash ?Available<h·2?HashFunc<<~New< 4hash hash.go
58 go19ldhashiostrconv? "".Hash.HashFunc?h?type."".Hash?~r0?Tgclocals·f207267fbf96a0178e8758c6e3e0ce28?Tgclocals·33cdeccccebe80329f1fdbee7f5874cb?Hgofile..$GOROOT/src/crypto/crypto.go?"".Hash.Size?"".digestSizes?$runtime.panicindex?type.string?"".statictmp_0?runtime.gopanic?0runtime.morestack_noctxt?type.int?"".Hash.New?"".hashes?strconv.Itoa?Zgo.string."crypto: requested hash function #"?6go.string." is unavailable"?*runtime.concatstring3?*runtime.convT2Estring?type.hash.Hash?.autotmp_5?Tgclocals·15b76348caca8a511afecadf603e9401?Tgclocals·db9a6544d085c0622e79e6568 (…)
    [all...]
  /prebuilts/go/linux-x86/pkg/linux_amd64_race/
crypto.a 15  crypto   |SGOROOTsrccrypto.goHash ?Available<h·2?HashFunc<<~New< 4hash hash.go
58 go19ldhashiostrconv? "".Hash.HashFunc?*runtime.racefuncenter?(runtime.racefuncexit?0runtime.morestack_noctxt?.fp?type.uintptr?h?type."".Hash?~r0?Tgclocals·f207267fbf96a0178e8758c6e3e0ce28?Tgclocals·33cdeccccebe80329f1fdbee7f5874cb?Hgofile..$GOROOT/src/crypto/crypto.go?"".Hash.Size?"".digestSizes? runtime.raceread?$runtime.panicindex?type.string?"".statictmp_0?runtime.gopanic?type.int?.autotmp_3?"".Hash.New?"".hashes?strconv.Itoa?Zgo.string."crypto: requested hash function #"?6go.string." is unavailable"?*runtime.concatstring3?*runtime.convT2Estring?type.hash.Hash?.autotmp_5?.autotmp_7?type.*uint8?.autotmp_8?Tgclocals·cadea2e49003779a155f5f8fb1f0f (…)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
CachedHashString.h 11 // and not-owning string types that store their hash in addition to their string
29 /// A container which contains a StringRef plus a precomputed hash.
33 uint32_t Hash;
40 CachedHashStringRef(StringRef S, uint32_t Hash)
41 : P(S.data()), Size(S.size()), Hash(Hash) {
47 uint32_t hash() const { return Hash; } function in class:llvm::CachedHashStringRef
58 assert(!isEqual(S, getEmptyKey()) && "Cannot hash the empty key!");
59 assert(!isEqual(S, getTombstoneKey()) && "Cannot hash the tombstone key!")
138 uint32_t hash() const { return Hash; } function in class:llvm::CachedHashString
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ADT/
CachedHashString.h 11 // and not-owning string types that store their hash in addition to their string
29 /// A container which contains a StringRef plus a precomputed hash.
33 uint32_t Hash;
40 CachedHashStringRef(StringRef S, uint32_t Hash)
41 : P(S.data()), Size(S.size()), Hash(Hash) {
47 uint32_t hash() const { return Hash; } function in class:llvm::CachedHashStringRef
58 assert(!isEqual(S, getEmptyKey()) && "Cannot hash the empty key!");
59 assert(!isEqual(S, getTombstoneKey()) && "Cannot hash the tombstone key!")
138 uint32_t hash() const { return Hash; } function in class:llvm::CachedHashString
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ADT/
CachedHashString.h 11 // and not-owning string types that store their hash in addition to their string
29 /// A container which contains a StringRef plus a precomputed hash.
33 uint32_t Hash;
40 CachedHashStringRef(StringRef S, uint32_t Hash)
41 : P(S.data()), Size(S.size()), Hash(Hash) {
47 uint32_t hash() const { return Hash; } function in class:llvm::CachedHashStringRef
58 assert(!isEqual(S, getEmptyKey()) && "Cannot hash the empty key!");
59 assert(!isEqual(S, getTombstoneKey()) && "Cannot hash the tombstone key!")
138 uint32_t hash() const { return Hash; } function in class:llvm::CachedHashString
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ADT/
CachedHashString.h 11 // and not-owning string types that store their hash in addition to their string
29 /// A container which contains a StringRef plus a precomputed hash.
33 uint32_t Hash;
40 CachedHashStringRef(StringRef S, uint32_t Hash)
41 : P(S.data()), Size(S.size()), Hash(Hash) {
47 uint32_t hash() const { return Hash; } function in class:llvm::CachedHashStringRef
58 assert(!isEqual(S, getEmptyKey()) && "Cannot hash the empty key!");
59 assert(!isEqual(S, getTombstoneKey()) && "Cannot hash the tombstone key!")
138 uint32_t hash() const { return Hash; } function in class:llvm::CachedHashString
    [all...]

Completed in 4556 milliseconds

1 2 34 5 6 7 8 91011>>