9 references to VerifyAsync
System.Security.Cryptography (9)
System\Security\Cryptography\HMACMD5.cs (1)
396return HMACStatic<HMACTrait>.VerifyAsync(key, source, hash, cancellationToken);
System\Security\Cryptography\HMACSHA1.cs (1)
384return HMACStatic<HMACTrait>.VerifyAsync(key, source, hash, cancellationToken);
System\Security\Cryptography\HMACSHA256.cs (1)
376return HMACStatic<HMACTrait>.VerifyAsync(key, source, hash, cancellationToken);
System\Security\Cryptography\HMACSHA3_256.cs (1)
421return HMACStatic<HMACTrait>.VerifyAsync(key, source, hash, cancellationToken);
System\Security\Cryptography\HMACSHA3_384.cs (1)
421return HMACStatic<HMACTrait>.VerifyAsync(key, source, hash, cancellationToken);
System\Security\Cryptography\HMACSHA3_512.cs (1)
421return HMACStatic<HMACTrait>.VerifyAsync(key, source, hash, cancellationToken);
System\Security\Cryptography\HMACSHA384.cs (1)
393return HMACStatic<HMACTrait>.VerifyAsync(key, source, hash, cancellationToken);
System\Security\Cryptography\HMACSHA512.cs (1)
390return HMACStatic<HMACTrait>.VerifyAsync(key, source, hash, cancellationToken);
System\Security\Cryptography\HMACStatic.cs (1)
249return VerifyAsync(new ReadOnlyMemory<byte>(key), source, new ReadOnlyMemory<byte>(hash), cancellationToken);