Exemple #1
0
 protected override byte[] HashDataOneShot(ReadOnlySpan <byte> key, ReadOnlySpan <byte> source) =>
 HMACSHA384.HashData(key, source);
Exemple #2
0
 protected override int HashDataOneShot(ReadOnlySpan <byte> key, ReadOnlySpan <byte> source, Span <byte> destination) =>
 HMACSHA384.HashData(key, source, destination);
Exemple #3
0
 protected override byte[] HashDataOneShot(byte[] key, byte[] source) =>
 HMACSHA384.HashData(key, source);