Home
last modified time | relevance | path

Searched refs:CreateHash (Results 1 – 25 of 51) sorted by relevance

123

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Security.Cryptography.Algorithms/tests/
H A DIncrementalHashTests.cs44 …sions.Throws<ArgumentException>("hashAlgorithm", () => IncrementalHash.CreateHash(new HashAlgorith… in InvalidArguments_Throw()
45 …sions.Throws<ArgumentException>("hashAlgorithm", () => IncrementalHash.CreateHash(new HashAlgorith… in InvalidArguments_Throw()
52 … using (IncrementalHash incrementalHash = IncrementalHash.CreateHash(HashAlgorithmName.SHA512)) in InvalidArguments_Throw()
71 using (IncrementalHash incrementalHash = IncrementalHash.CreateHash(hashAlgorithm)) in VerifyIncrementalHash()
130 using (IncrementalHash incrementalHash = IncrementalHash.CreateHash(hashAlgorithm)) in VerifyEmptyHash()
170 using (IncrementalHash incrementalHash = IncrementalHash.CreateHash(hashAlgorithm)) in VerifyTrivialHash()
198 using (IncrementalHash hash = IncrementalHash.CreateHash(HashAlgorithmName.SHA256)) in AppendDataAfterHashClose()
226 using (IncrementalHash hash = IncrementalHash.CreateHash(HashAlgorithmName.SHA256)) in GetHashTwice()
250 using (IncrementalHash hash = IncrementalHash.CreateHash(HashAlgorithmName.SHA256)) in ModifyAfterHashDispose()
H A DIncrementalHashTests.netcoreapp.cs18 using (IncrementalHash incrementalHash = IncrementalHash.CreateHash(hashAlgorithm)) in VerifyIncrementalHash_Span()
85 using (IncrementalHash incrementalHash = IncrementalHash.CreateHash(hashAlgorithm)) in VerifyEmptyHash_Span()
127 using (IncrementalHash incrementalHash = IncrementalHash.CreateHash(hashAlgorithm)) in VerifyTrivialHash_Span()
159 var incrementalHash = IncrementalHash.CreateHash(hashAlgorithm); in Dispose_HashAlgorithm_ThrowsException()
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/Mono.Security.Cryptography/
H A DHMACAlgorithm.cs63 CreateHash (algoName); in HMACAlgorithm()
71 private void CreateHash (string algoName) in CreateHash() method in Mono.Security.Cryptography.HMACAlgorithm
90 set { CreateHash (value); }
/dports/games/openjk/OpenJK-07675e2/code/qcommon/
H A Dchash.h40 void CreateHash(const char *key) in CreateHash() function
83 CreateHash(item->GetName()); in insert()
91 CreateHash(key); in find()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/security/cryptography/
H A Dsha1cryptoserviceprovider.cs27 _safeHashHandle = Utils.CreateHash(Utils.StaticProvHandle, Constants.CALG_SHA1); in SHA1CryptoServiceProvider()
49 _safeHashHandle = Utils.CreateHash(Utils.StaticProvHandle, Constants.CALG_SHA1); in Initialize()
H A Dmd5cryptoserviceprovider.cs31 _safeHashHandle = Utils.CreateHash(Utils.StaticProvHandle, Constants.CALG_MD5); in MD5CryptoServiceProvider()
52 _safeHashHandle = Utils.CreateHash(Utils.StaticProvHandle, Constants.CALG_MD5); in Initialize()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/platform/exported/
H A Dweb_crypto_key_algorithm.cc42 WebCryptoAlgorithm CreateHash(WebCryptoAlgorithmId hash) { in CreateHash() function
89 std::make_unique<WebCryptoHmacKeyAlgorithmParams>(CreateHash(hash), in CreateHmac()
105 CreateHash(hash))); in CreateRsaHashed()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/platform/exported/
H A Dweb_crypto_key_algorithm.cc42 WebCryptoAlgorithm CreateHash(WebCryptoAlgorithmId hash) { in CreateHash() function
89 std::make_unique<WebCryptoHmacKeyAlgorithmParams>(CreateHash(hash), in CreateHmac()
105 CreateHash(hash))); in CreateRsaHashed()
/dports/comms/cqrlog/cqrlog-2.5.0/tools/
H A Dadif_hash_generator.lpr18 function CreateHash(What : String) : longint;
27 function TAdifHash.CreateHash(What : String) : longint;
69 Hash := CreateHash(ParamStr(1));
/dports/ftp/sftpgo/sftpgo-2.2.0/vendor/github.com/alexedwards/argon2id/
H A DREADME.md19 // CreateHash returns a Argon2id hash of a plain-text password using the
23 hash, err := argon2id.CreateHash("pa$$word", argon2id.DefaultParams)
65 hash, err := argon2id.CreateHash("pa$$word", params)
H A Dargon2id.go85 func CreateHash(password string, params *Params) (hash string, err error) { func
/dports/audio/gnupod/gnupod-0.99.8/src/ext/
H A DHash58.pm103 my $this_hash = CreateHash(Keyref=>$this_key, Filepath=>$file);
112 sub CreateHash { subroutine
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Security.Cryptography.Csp/src/System/Security/Cryptography/
H A DMD5CryptoServiceProvider.cs17 _incrementalHash = IncrementalHash.CreateHash(HashAlgorithmName.MD5); in MD5CryptoServiceProvider()
H A DSHA512CryptoServiceProvider.cs20 _incrementalHash = IncrementalHash.CreateHash(HashAlgorithmName.SHA512); in SHA512CryptoServiceProvider()
H A DSHA1CryptoServiceProvider.cs20 _incrementalHash = IncrementalHash.CreateHash(HashAlgorithmName.SHA1); in SHA1CryptoServiceProvider()
H A DSHA256CryptoServiceProvider.cs20 _incrementalHash = IncrementalHash.CreateHash(HashAlgorithmName.SHA256); in SHA256CryptoServiceProvider()
H A DSHA384CryptoServiceProvider.cs20 _incrementalHash = IncrementalHash.CreateHash(HashAlgorithmName.SHA384); in SHA384CryptoServiceProvider()
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/shared/test/common/helpers/
H A Dstring_to_hash_tests.cpp210 TEST(CreateHash, WhenGettingHashesThenHashesAreDeterministicAndDoNotCollide) { in TEST() argument
227 TEST(CreateHash, WhenGettingHashThenChangesPastLengthDoNotAffectOutput) { in TEST() argument
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/System.ServiceModel.Security.Tokens/
H A DSslSecurityTokenAuthenticator.cs210 byte [] key = tls.CreateHash (tls.MasterSecret, hash, "CK-HASH"); in ProcessClientKeyExchange()
252 rstr.Authenticator = tls.CreateHash (key, hash, "AUTH-HASH"); in ProcessClientKeyExchange()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Reflection.Metadata/tests/TestUtilities/
H A DSigningUtilities.cs30 using (var hash = IncrementalHash.CreateHash(HashAlgorithmName.SHA1)) in CalculateSha1()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Security.Cryptography.Algorithms/src/System/Security/Cryptography/
H A DIncrementalHash.cs180 public static IncrementalHash CreateHash(HashAlgorithmName hashAlgorithm) in CreateHash() method in System.Security.Cryptography.IncrementalHash
H A DIncrementalHash.net46.cs153 public static IncrementalHash CreateHash(HashAlgorithmName hashAlgorithm) in CreateHash() method in System.Security.Cryptography.IncrementalHash
/dports/www/node10/node-v10.24.1/deps/v8/src/snapshot/
H A Dsnapshot-common.cc406 const size_t hash = d.CreateHash(); in FromIsolate()
409 DCHECK_EQ(hash, d.CreateHash()); in FromIsolate()
438 size_t EmbeddedData::CreateHash() const { in CreateHash() function in v8::internal::EmbeddedData
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Security.Cryptography.X509Certificates/src/System/Security/Cryptography/X509Certificates/
H A DX509Certificate.cs324 using (IncrementalHash hasher = IncrementalHash.CreateHash(hashAlgorithm)) in GetCertHash()
338 using (IncrementalHash hasher = IncrementalHash.CreateHash(hashAlgorithm)) in TryGetCertHash()
/dports/ftp/sftpgo/sftpgo-2.2.0/dataprovider/
H A Dapikey.go109 hashed, err := argon2id.CreateHash(k.Key, argon2Params)

123