address feedback
authorEirik Tsarpalis <eirik.tsarpalis@gmail.com>
Fri, 14 Feb 2020 15:26:41 +0000 (15:26 +0000)
committerEirik Tsarpalis <eirik.tsarpalis@gmail.com>
Fri, 14 Feb 2020 15:32:54 +0000 (15:32 +0000)
src/libraries/Common/src/Internal/Cryptography/HashProviderCng.cs
src/libraries/Common/src/Interop/Windows/BCrypt/BCryptAlgorithmCache.cs
src/libraries/Common/src/System/Security/Cryptography/Asn1/AlgorithmIdentifierAsn.manual.cs
src/libraries/Common/src/System/Security/Cryptography/KeyFormatHelper.cs

index 2864461..30e975e 100644 (file)
@@ -10,7 +10,6 @@ using NTSTATUS = Interop.BCrypt.NTSTATUS;
 using BCryptOpenAlgorithmProviderFlags = Interop.BCrypt.BCryptOpenAlgorithmProviderFlags;
 using BCryptCreateHashFlags = Interop.BCrypt.BCryptCreateHashFlags;
 
-#nullable enable
 namespace Internal.Cryptography
 {
     //
index 1e6b18b..30e40b2 100644 (file)
@@ -2,7 +2,6 @@
 // The .NET Foundation licenses this file to you under the MIT license.
 // See the LICENSE file in the project root for more information.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 using System.Collections.Generic;
index a68f369..7235166 100644 (file)
@@ -2,7 +2,6 @@
 // The .NET Foundation licenses this file to you under the MIT license.
 // See the LICENSE file in the project root for more information.
 
-#nullable enable
 using System.Runtime.InteropServices;
 
 namespace System.Security.Cryptography.Asn1
index 4523de5..5ec2009 100644 (file)
@@ -204,7 +204,7 @@ namespace System.Security.Cryptography
             ReadOnlySpan<byte> passwordBytes,
             KeyReader<TRet> keyReader,
             out int bytesRead,
-            [MaybeNull] out TRet ret)
+            out TRet ret)
         {
             AsnValueReader reader = new AsnValueReader(source.Span, AsnEncodingRules.BER);
             int read = reader.PeekEncodedValue().Length;