@@ -542,6 +542,24 @@ public static void AddOID(string oid, params string[] names) { }
542
542
public static partial class CryptographicOperations
543
543
{
544
544
public static bool FixedTimeEquals ( System . ReadOnlySpan < byte > left , System . ReadOnlySpan < byte > right ) { throw null ; }
545
+ public static byte [ ] HashData ( System . Security . Cryptography . HashAlgorithmName hashAlgorithm , byte [ ] source ) { throw null ; }
546
+ public static byte [ ] HashData ( System . Security . Cryptography . HashAlgorithmName hashAlgorithm , System . IO . Stream source ) { throw null ; }
547
+ public static int HashData ( System . Security . Cryptography . HashAlgorithmName hashAlgorithm , System . IO . Stream source , System . Span < byte > destination ) { throw null ; }
548
+ public static byte [ ] HashData ( System . Security . Cryptography . HashAlgorithmName hashAlgorithm , System . ReadOnlySpan < byte > source ) { throw null ; }
549
+ public static int HashData ( System . Security . Cryptography . HashAlgorithmName hashAlgorithm , System . ReadOnlySpan < byte > source , System . Span < byte > destination ) { throw null ; }
550
+ public static System . Threading . Tasks . ValueTask < int > HashDataAsync ( System . Security . Cryptography . HashAlgorithmName hashAlgorithm , System . IO . Stream source , System . Memory < byte > destination , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
551
+ public static System . Threading . Tasks . ValueTask < byte [ ] > HashDataAsync ( System . Security . Cryptography . HashAlgorithmName hashAlgorithm , System . IO . Stream source , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
552
+ public static byte [ ] HmacData ( System . Security . Cryptography . HashAlgorithmName hashAlgorithm , byte [ ] key , byte [ ] source ) { throw null ; }
553
+ public static byte [ ] HmacData ( System . Security . Cryptography . HashAlgorithmName hashAlgorithm , byte [ ] key , System . IO . Stream source ) { throw null ; }
554
+ public static byte [ ] HmacData ( System . Security . Cryptography . HashAlgorithmName hashAlgorithm , System . ReadOnlySpan < byte > key , System . IO . Stream source ) { throw null ; }
555
+ public static int HmacData ( System . Security . Cryptography . HashAlgorithmName hashAlgorithm , System . ReadOnlySpan < byte > key , System . IO . Stream source , System . Span < byte > destination ) { throw null ; }
556
+ public static byte [ ] HmacData ( System . Security . Cryptography . HashAlgorithmName hashAlgorithm , System . ReadOnlySpan < byte > key , System . ReadOnlySpan < byte > source ) { throw null ; }
557
+ public static int HmacData ( System . Security . Cryptography . HashAlgorithmName hashAlgorithm , System . ReadOnlySpan < byte > key , System . ReadOnlySpan < byte > source , System . Span < byte > destination ) { throw null ; }
558
+ public static System . Threading . Tasks . ValueTask < byte [ ] > HmacDataAsync ( System . Security . Cryptography . HashAlgorithmName hashAlgorithm , byte [ ] key , System . IO . Stream source , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
559
+ public static System . Threading . Tasks . ValueTask < int > HmacDataAsync ( System . Security . Cryptography . HashAlgorithmName hashAlgorithm , System . ReadOnlyMemory < byte > key , System . IO . Stream source , System . Memory < byte > destination , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
560
+ public static System . Threading . Tasks . ValueTask < byte [ ] > HmacDataAsync ( System . Security . Cryptography . HashAlgorithmName hashAlgorithm , System . ReadOnlyMemory < byte > key , System . IO . Stream source , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
561
+ public static bool TryHashData ( System . Security . Cryptography . HashAlgorithmName hashAlgorithm , System . ReadOnlySpan < byte > source , System . Span < byte > destination , out int bytesWritten ) { throw null ; }
562
+ public static bool TryHmacData ( System . Security . Cryptography . HashAlgorithmName hashAlgorithm , System . ReadOnlySpan < byte > key , System . ReadOnlySpan < byte > source , System . Span < byte > destination , out int bytesWritten ) { throw null ; }
545
563
public static void ZeroMemory ( System . Span < byte > buffer ) { }
546
564
}
547
565
public partial class CryptographicUnexpectedOperationException : System . Security . Cryptography . CryptographicException
0 commit comments