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