ExternalAnnotations icon indicating copy to clipboard operation
ExternalAnnotations copied to clipboard

System.Security.Cryptography is not annotated

Open NN--- opened this issue 7 years ago • 0 comments

Create methods never return null. E.g. https://docs.microsoft.com/en-us/dotnet/api/system.security.cryptography.des.create?view=netframework-4.7.2#System_Security_Cryptography_DES_Create

https://docs.microsoft.com/en-us/dotnet/api/system.security.cryptography?view=netframework-4.7.2 Samples

var des = DES.Create();
var desEncryptor = des.CreateEncryptor(); // Possible NRE

var aes = Aes.Create();
var aesEncryptor = aes.CreateEncryptor(); // Possible NRE

NN--- avatar Nov 29 '18 11:11 NN---