Forgot remove a ? from ref assembly (#1467)
authorbuyaa-n <bunamnan@microsoft.com>
Thu, 9 Jan 2020 01:09:53 +0000 (17:09 -0800)
committerGitHub <noreply@github.com>
Thu, 9 Jan 2020 01:09:53 +0000 (17:09 -0800)
src/libraries/System.Security.Cryptography.Primitives/ref/System.Security.Cryptography.Primitives.cs

index c207fe0..acabe7e 100644 (file)
@@ -164,7 +164,7 @@ namespace System.Security.Cryptography
         bool CanTransformMultipleBlocks { get; }
         int InputBlockSize { get; }
         int OutputBlockSize { get; }
-        int TransformBlock(byte[] inputBuffer, int inputOffset, int inputCount, byte[]? outputBuffer, int outputOffset);
+        int TransformBlock(byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer, int outputOffset);
         byte[] TransformFinalBlock(byte[] inputBuffer, int inputOffset, int inputCount);
     }
     public abstract partial class KeyedHashAlgorithm : System.Security.Cryptography.HashAlgorithm