Home
last modified time | relevance | path

Searched refs:HashValue (Results 1 – 25 of 1813) sorted by relevance

12345678910>>...73

/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/base/
H A Dhash_value.cc38 HashValue::HashValue(const SHA256HashValue& hash) in HashValue() function in net::HashValue
39 : HashValue(HASH_VALUE_SHA256) { in HashValue()
60 std::string HashValue::ToString() const { in ToString()
73 size_t HashValue::size() const { in size()
86 unsigned char* HashValue::data() { in data()
100 bool operator==(const HashValue& lhs, const HashValue& rhs) { in operator ==()
113 bool operator!=(const HashValue& lhs, const HashValue& rhs) { in operator !=()
117 bool operator<(const HashValue& lhs, const HashValue& rhs) { in operator <()
130 bool operator>(const HashValue& lhs, const HashValue& rhs) { in operator >()
134 bool operator<=(const HashValue& lhs, const HashValue& rhs) { in operator <=()
[all …]
H A Dhash_value.h54 class NET_EXPORT HashValue {
56 explicit HashValue(const SHA256HashValue& hash);
57 explicit HashValue(HashValueTag tag) : tag_(tag) {} in HashValue() function
58 HashValue() : tag_(HASH_VALUE_SHA256) {} in HashValue() function
85 NET_EXPORT friend bool operator==(const HashValue& lhs, const HashValue& rhs);
86 NET_EXPORT friend bool operator!=(const HashValue& lhs, const HashValue& rhs);
87 NET_EXPORT friend bool operator<(const HashValue& lhs, const HashValue& rhs);
88 NET_EXPORT friend bool operator>(const HashValue& lhs, const HashValue& rhs);
89 NET_EXPORT friend bool operator<=(const HashValue& lhs, const HashValue& rhs);
90 NET_EXPORT friend bool operator>=(const HashValue& lhs, const HashValue& rhs);
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/base/
H A Dhash_value.cc40 HashValue::HashValue(const SHA256HashValue& hash) in HashValue() function in net::HashValue
41 : HashValue(HASH_VALUE_SHA256) { in HashValue()
62 std::string HashValue::ToString() const { in ToString()
75 size_t HashValue::size() const { in size()
88 unsigned char* HashValue::data() { in data()
102 bool operator==(const HashValue& lhs, const HashValue& rhs) { in operator ==()
115 bool operator!=(const HashValue& lhs, const HashValue& rhs) { in operator !=()
119 bool operator<(const HashValue& lhs, const HashValue& rhs) { in operator <()
132 bool operator>(const HashValue& lhs, const HashValue& rhs) { in operator >()
136 bool operator<=(const HashValue& lhs, const HashValue& rhs) { in operator <=()
[all …]
H A Dhash_value.h54 class NET_EXPORT HashValue {
56 explicit HashValue(const SHA256HashValue& hash);
57 explicit HashValue(HashValueTag tag) : tag_(tag) {} in HashValue() function
58 HashValue() : tag_(HASH_VALUE_SHA256) {} in HashValue() function
85 NET_EXPORT friend bool operator==(const HashValue& lhs, const HashValue& rhs);
86 NET_EXPORT friend bool operator!=(const HashValue& lhs, const HashValue& rhs);
87 NET_EXPORT friend bool operator<(const HashValue& lhs, const HashValue& rhs);
88 NET_EXPORT friend bool operator>(const HashValue& lhs, const HashValue& rhs);
89 NET_EXPORT friend bool operator<=(const HashValue& lhs, const HashValue& rhs);
90 NET_EXPORT friend bool operator>=(const HashValue& lhs, const HashValue& rhs);
[all …]
/dports/devel/hs-cabal-install/cabal-cabal-install-3.4.0.0/cabal-install/Distribution/Client/
H A DHashValue.hs3 module Distribution.Client.HashValue (
4 HashValue,
38 newtype HashValue = HashValue BS.ByteString constructor
46 instance Binary HashValue
47 instance Structured HashValue
52 hashValue = HashValue . SHA256.hashlazy
54 showHashValue :: HashValue -> String
69 hashFromTUF :: Sec.Hash -> HashValue
75 -> HashValue hash
84 truncateHash :: Int -> HashValue -> HashValue
[all …]
/dports/lang/ghc/ghc-8.10.7/libraries/Cabal/cabal-install/Distribution/Client/
H A DHashValue.hs3 module Distribution.Client.HashValue (
4 HashValue,
39 newtype HashValue = HashValue BS.ByteString function
47 instance Binary HashValue
48 instance Structured HashValue
53 hashValue = HashValue . SHA256.hashlazy
55 showHashValue :: HashValue -> String
70 hashFromTUF :: Sec.Hash -> HashValue
76 -> HashValue hash
85 truncateHash :: Int -> HashValue -> HashValue
[all …]
/dports/net-p2p/eiskaltdcpp-cli/eiskaltdcpp-2.2.10/dcpp/
H A DHashValue.h27 struct HashValue : FastAlloc<HashValue<Hasher> >{ struct
31 HashValue() { } in HashValue() argument
32 explicit HashValue(const uint8_t* aData) { memcpy(data, aData, BYTES); } in HashValue() function
33 …explicit HashValue(const std::string& base32) { Encoder::fromBase32(base32.c_str(), data, BYTES); } in HashValue() argument
34 HashValue(const HashValue& rhs) { memcpy(data, rhs.data, BYTES); } in HashValue() argument
35 HashValue& operator=(const HashValue& rhs) { memcpy(data, rhs.data, BYTES); return *this; }
36 bool operator!=(const HashValue& rhs) const { return !(*this == rhs); }
37 bool operator==(const HashValue& rhs) const { return memcmp(data, rhs.data, BYTES) == 0; }
38 bool operator<(const HashValue& rhs) const { return memcmp(data, rhs.data, BYTES) < 0; }
50 struct hash<dcpp::HashValue<T> > { argument
[all …]
/dports/net-p2p/eiskaltdcpp-daemon/eiskaltdcpp-2.2.10/dcpp/
H A DHashValue.h27 struct HashValue : FastAlloc<HashValue<Hasher> >{ struct
31 HashValue() { } in HashValue() argument
32 explicit HashValue(const uint8_t* aData) { memcpy(data, aData, BYTES); } in HashValue() argument
33 …explicit HashValue(const std::string& base32) { Encoder::fromBase32(base32.c_str(), data, BYTES); } in HashValue() argument
34 HashValue(const HashValue& rhs) { memcpy(data, rhs.data, BYTES); } in HashValue() argument
35 HashValue& operator=(const HashValue& rhs) { memcpy(data, rhs.data, BYTES); return *this; }
36 bool operator!=(const HashValue& rhs) const { return !(*this == rhs); }
37 bool operator==(const HashValue& rhs) const { return memcmp(data, rhs.data, BYTES) == 0; }
38 bool operator<(const HashValue& rhs) const { return memcmp(data, rhs.data, BYTES) < 0; }
50 struct hash<dcpp::HashValue<T> > { argument
[all …]
/dports/net-p2p/linuxdcpp/linuxdcpp-1.1.0/dcpp/
H A DHashValue.h28 struct HashValue : FastAlloc<HashValue<Hasher> >{ struct
32 HashValue() { } in HashValue() argument
33 explicit HashValue(uint8_t* aData) { memcpy(data, aData, BYTES); } in HashValue() function
34 explicit HashValue(const std::string& base32) { Encoder::fromBase32(base32.c_str(), data, BYTES); } in HashValue() argument
35 HashValue(const HashValue& rhs) { memcpy(data, rhs.data, BYTES); } in HashValue() argument
36 HashValue& operator=(const HashValue& rhs) { memcpy(data, rhs.data, BYTES); return *this; }
37 bool operator!=(const HashValue& rhs) const { return !(*this == rhs); }
38 bool operator==(const HashValue& rhs) const { return memcmp(data, rhs.data, BYTES) == 0; }
39 bool operator<(const HashValue& rhs) const { return memcmp(data, rhs.data, BYTES) < 0; }
54 struct hash<dcpp::HashValue<T> > { argument
[all …]
/dports/net-p2p/eiskaltdcpp-lib/eiskaltdcpp-2.2.10/dcpp/
H A DHashValue.h27 struct HashValue : FastAlloc<HashValue<Hasher> >{ struct
31 HashValue() { } in HashValue() argument
32 explicit HashValue(const uint8_t* aData) { memcpy(data, aData, BYTES); } in HashValue() function
33 …explicit HashValue(const std::string& base32) { Encoder::fromBase32(base32.c_str(), data, BYTES); } in HashValue() function
34 HashValue(const HashValue& rhs) { memcpy(data, rhs.data, BYTES); } in HashValue() argument
35 HashValue& operator=(const HashValue& rhs) { memcpy(data, rhs.data, BYTES); return *this; }
36 bool operator!=(const HashValue& rhs) const { return !(*this == rhs); }
37 bool operator==(const HashValue& rhs) const { return memcmp(data, rhs.data, BYTES) == 0; }
38 bool operator<(const HashValue& rhs) const { return memcmp(data, rhs.data, BYTES) < 0; }
50 struct hash<dcpp::HashValue<T> > { argument
[all …]
/dports/net-p2p/eiskaltdcpp-gtk/eiskaltdcpp-2.2.10/dcpp/
H A DHashValue.h27 struct HashValue : FastAlloc<HashValue<Hasher> >{ struct
31 HashValue() { } in HashValue() argument
32 explicit HashValue(const uint8_t* aData) { memcpy(data, aData, BYTES); } in HashValue() function
33 …explicit HashValue(const std::string& base32) { Encoder::fromBase32(base32.c_str(), data, BYTES); } in HashValue() function
34 HashValue(const HashValue& rhs) { memcpy(data, rhs.data, BYTES); } in HashValue() argument
35 HashValue& operator=(const HashValue& rhs) { memcpy(data, rhs.data, BYTES); return *this; }
36 bool operator!=(const HashValue& rhs) const { return !(*this == rhs); }
37 bool operator==(const HashValue& rhs) const { return memcmp(data, rhs.data, BYTES) == 0; }
38 bool operator<(const HashValue& rhs) const { return memcmp(data, rhs.data, BYTES) < 0; }
50 struct hash<dcpp::HashValue<T> > { argument
[all …]
/dports/net-p2p/eiskaltdcpp-data/eiskaltdcpp-2.2.10/dcpp/
H A DHashValue.h27 struct HashValue : FastAlloc<HashValue<Hasher> >{ struct
31 HashValue() { } in HashValue() argument
32 explicit HashValue(const uint8_t* aData) { memcpy(data, aData, BYTES); } in HashValue() function
33 …explicit HashValue(const std::string& base32) { Encoder::fromBase32(base32.c_str(), data, BYTES); } in HashValue() function
34 HashValue(const HashValue& rhs) { memcpy(data, rhs.data, BYTES); } in HashValue() function
35 HashValue& operator=(const HashValue& rhs) { memcpy(data, rhs.data, BYTES); return *this; }
36 bool operator!=(const HashValue& rhs) const { return !(*this == rhs); }
37 bool operator==(const HashValue& rhs) const { return memcmp(data, rhs.data, BYTES) == 0; }
38 bool operator<(const HashValue& rhs) const { return memcmp(data, rhs.data, BYTES) < 0; }
50 struct hash<dcpp::HashValue<T> > { argument
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/grafana/loki/pkg/storage/chunk/storage/
H A Dcaching_index_client_test.go51 HashValue: "baz",
82 {TableName: "table", HashValue: "foo"},
83 {TableName: "table", HashValue: "bar"},
84 {TableName: "table", HashValue: "baz"},
279 ret := q.TableName + sep + q.HashValue
303 {TableName: "table", HashValue: "foo"},
304 {TableName: "table", HashValue: "bar"},
307 {TableName: "table", HashValue: "foo"},
308 {TableName: "table", HashValue: "bar"},
311 {TableName: "table", HashValue: "foo"},
[all …]
H A Dindex_client_test.go55 HashValue: "foo",
61 HashValue: "foo",
67 HashValue: "foo",
73 HashValue: "foo",
79 HashValue: "foo",
85 HashValue: "flip",
91 HashValue: "flip",
97 HashValue: "flip",
123 HashValue: "flip",
182 HashValue: tt.query.HashValue,
[all …]
/dports/net-p2p/dclib/dclib-0.3.23/dclib/hash/
H A DHashValue.h25 struct HashValue { struct
29 HashValue() { } in HashValue() argument
30 explicit HashValue(uint8_t* aData) { memcpy(data, aData, BYTES); } in HashValue() argument
31 HashValue(const HashValue& rhs) { memcpy(data, rhs.data, BYTES); } in HashValue() argument
32 HashValue& operator=(const HashValue& rhs) { memcpy(data, rhs.data, BYTES); return *this; }
33 bool operator!=(const HashValue& rhs) const { return !(*this == rhs); }
34 bool operator==(const HashValue& rhs) const { return memcmp(data, rhs.data, BYTES) == 0; }
35 bool operator<(const HashValue& rhs) const { return memcmp(data, rhs.data, BYTES) < 0; }
H A Ddcpp-to-dclib.diff1 diff -Naur dcpp0708/HashValue.h dclib/HashValue.h
2 --- dcpp0708/HashValue.h 2008-11-05 20:36:39.000000000 +0000
3 +++ dclib/HashValue.h 2008-11-05 20:36:16.000000000 +0000
14 -struct HashValue : FastAlloc<HashValue<Hasher> >{
15 +struct HashValue {
19 HashValue() { }
20 explicit HashValue(uint8_t* aData) { memcpy(data, aData, BYTES); }
22 HashValue(const HashValue& rhs) { memcpy(data, rhs.data, BYTES); }
23 HashValue& operator=(const HashValue& rhs) { memcpy(data, rhs.data, BYTES); return *this; }
38 -struct hash<dcpp::HashValue<T> > {
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/cortexproject/cortex/pkg/chunk/storage/
H A Dindex_client_test.go55 HashValue: "foo",
61 HashValue: "foo",
67 HashValue: "foo",
73 HashValue: "foo",
79 HashValue: "foo",
85 HashValue: "flip",
91 HashValue: "flip",
97 HashValue: "flip",
123 HashValue: "flip",
182 HashValue: tt.query.HashValue,
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/security/cryptography/
H A Dhashalgorithm.cs20 protected internal byte[] HashValue; field in System.Security.Cryptography.HashAlgorithm
41 return (byte[]) HashValue.Clone();
75 HashValue = HashFinal(); in ComputeHash()
76 byte[] Tmp = (byte[]) HashValue.Clone(); in ComputeHash()
89 HashValue = HashFinal(); in ComputeHash()
90 byte[] Tmp = (byte[]) HashValue.Clone(); in ComputeHash()
111 HashValue = HashFinal(); in ComputeHash()
176 HashValue = HashFinal(); in TransformFinalBlock()
215 if (HashValue != null) in Dispose()
216 Array.Clear(HashValue, 0, HashValue.Length); in Dispose()
[all …]
/dports/emulators/qemu42/qemu-4.2.1/roms/edk2/CryptoPkg/Library/BaseCryptLib/Hash/
H A DCryptSha512.c165 OUT UINT8 *HashValue in Sha384Final() argument
171 if (Sha384Context == NULL || HashValue == NULL) { in Sha384Final()
178 return (BOOLEAN) (SHA384_Final (HashValue, (SHA512_CTX *) Sha384Context)); in Sha384Final()
204 OUT UINT8 *HashValue in Sha384HashAll() argument
210 if (HashValue == NULL) { in Sha384HashAll()
220 if (SHA384 (Data, DataSize, HashValue) == NULL) { in Sha384HashAll()
380 OUT UINT8 *HashValue in Sha512Final() argument
386 if (Sha512Context == NULL || HashValue == NULL) { in Sha512Final()
419 OUT UINT8 *HashValue in Sha512HashAll() argument
425 if (HashValue == NULL) { in Sha512HashAll()
[all …]
/dports/emulators/qemu/qemu-6.2.0/roms/edk2/CryptoPkg/Library/BaseCryptLib/Hash/
H A DCryptSha512.c165 OUT UINT8 *HashValue in Sha384Final() argument
171 if (Sha384Context == NULL || HashValue == NULL) { in Sha384Final()
178 return (BOOLEAN) (SHA384_Final (HashValue, (SHA512_CTX *) Sha384Context)); in Sha384Final()
204 OUT UINT8 *HashValue in Sha384HashAll() argument
210 if (HashValue == NULL) { in Sha384HashAll()
220 if (SHA384 (Data, DataSize, HashValue) == NULL) { in Sha384HashAll()
380 OUT UINT8 *HashValue in Sha512Final() argument
386 if (Sha512Context == NULL || HashValue == NULL) { in Sha512Final()
419 OUT UINT8 *HashValue in Sha512HashAll() argument
425 if (HashValue == NULL) { in Sha512HashAll()
[all …]
/dports/emulators/qemu5/qemu-5.2.0/roms/edk2/CryptoPkg/Library/BaseCryptLib/Hash/
H A DCryptSha512.c165 OUT UINT8 *HashValue in Sha384Final() argument
171 if (Sha384Context == NULL || HashValue == NULL) { in Sha384Final()
178 return (BOOLEAN) (SHA384_Final (HashValue, (SHA512_CTX *) Sha384Context)); in Sha384Final()
204 OUT UINT8 *HashValue in Sha384HashAll() argument
210 if (HashValue == NULL) { in Sha384HashAll()
220 if (SHA384 (Data, DataSize, HashValue) == NULL) { in Sha384HashAll()
380 OUT UINT8 *HashValue in Sha512Final() argument
386 if (Sha512Context == NULL || HashValue == NULL) { in Sha512Final()
419 OUT UINT8 *HashValue in Sha512HashAll() argument
425 if (HashValue == NULL) { in Sha512HashAll()
[all …]
/dports/sysutils/uefi-edk2-qemu/edk2-edk2-stable201911/CryptoPkg/Library/BaseCryptLib/Hash/
H A DCryptSha512.c165 OUT UINT8 *HashValue in Sha384Final() argument
171 if (Sha384Context == NULL || HashValue == NULL) { in Sha384Final()
178 return (BOOLEAN) (SHA384_Final (HashValue, (SHA512_CTX *) Sha384Context)); in Sha384Final()
204 OUT UINT8 *HashValue in Sha384HashAll() argument
210 if (HashValue == NULL) { in Sha384HashAll()
220 if (SHA384 (Data, DataSize, HashValue) == NULL) { in Sha384HashAll()
380 OUT UINT8 *HashValue in Sha512Final() argument
386 if (Sha512Context == NULL || HashValue == NULL) { in Sha512Final()
419 OUT UINT8 *HashValue in Sha512HashAll() argument
425 if (HashValue == NULL) { in Sha512HashAll()
[all …]
/dports/sysutils/uefi-edk2-bhyve/edk2-edk2-stable202102/CryptoPkg/Library/BaseCryptLib/Hash/
H A DCryptSha512.c165 OUT UINT8 *HashValue in Sha384Final() argument
171 if (Sha384Context == NULL || HashValue == NULL) { in Sha384Final()
178 return (BOOLEAN) (SHA384_Final (HashValue, (SHA512_CTX *) Sha384Context)); in Sha384Final()
204 OUT UINT8 *HashValue in Sha384HashAll() argument
210 if (HashValue == NULL) { in Sha384HashAll()
220 if (SHA384 (Data, DataSize, HashValue) == NULL) { in Sha384HashAll()
380 OUT UINT8 *HashValue in Sha512Final() argument
386 if (Sha512Context == NULL || HashValue == NULL) { in Sha512Final()
419 OUT UINT8 *HashValue in Sha512HashAll() argument
425 if (HashValue == NULL) { in Sha512HashAll()
[all …]
/dports/emulators/qemu-utils/qemu-4.2.1/roms/edk2/CryptoPkg/Library/BaseCryptLib/Hash/
H A DCryptSha512.c165 OUT UINT8 *HashValue in Sha384Final() argument
171 if (Sha384Context == NULL || HashValue == NULL) { in Sha384Final()
178 return (BOOLEAN) (SHA384_Final (HashValue, (SHA512_CTX *) Sha384Context)); in Sha384Final()
204 OUT UINT8 *HashValue in Sha384HashAll() argument
210 if (HashValue == NULL) { in Sha384HashAll()
220 if (SHA384 (Data, DataSize, HashValue) == NULL) { in Sha384HashAll()
380 OUT UINT8 *HashValue in Sha512Final() argument
386 if (Sha512Context == NULL || HashValue == NULL) { in Sha512Final()
419 OUT UINT8 *HashValue in Sha512HashAll() argument
425 if (HashValue == NULL) { in Sha512HashAll()
[all …]
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/edk2/CryptoPkg/Library/BaseCryptLib/Hash/
H A DCryptSha512.c165 OUT UINT8 *HashValue in Sha384Final() argument
171 if (Sha384Context == NULL || HashValue == NULL) { in Sha384Final()
178 return (BOOLEAN) (SHA384_Final (HashValue, (SHA512_CTX *) Sha384Context)); in Sha384Final()
204 OUT UINT8 *HashValue in Sha384HashAll() argument
210 if (HashValue == NULL) { in Sha384HashAll()
220 if (SHA384 (Data, DataSize, HashValue) == NULL) { in Sha384HashAll()
380 OUT UINT8 *HashValue in Sha512Final() argument
386 if (Sha512Context == NULL || HashValue == NULL) { in Sha512Final()
419 OUT UINT8 *HashValue in Sha512HashAll() argument
425 if (HashValue == NULL) { in Sha512HashAll()
[all …]

12345678910>>...73