6 references to PUBLICKEYBLOB
System.Security.Cryptography (6)
System\Security\Cryptography\CapiHelper.DSA.Shared.cs (1)
303bw.Write((byte)(isPrivate ? PRIVATEKEYBLOB : PUBLICKEYBLOB)); // BLOBHEADER.bType
System\Security\Cryptography\CapiHelper.Shared.cs (1)
109bw.Write((byte)(isPrivate ? PRIVATEKEYBLOB : PUBLICKEYBLOB)); // BLOBHEADER.bType
System\Security\Cryptography\CapiHelper.Windows.cs (2)
971bool isPublic = keyBlob.Length > 0 && keyBlob[0] == CapiHelper.PUBLICKEYBLOB; 1011int dwBlobType = includePrivateParameters ? PRIVATEKEYBLOB : PUBLICKEYBLOB;
System\Security\Cryptography\DSACryptoServiceProvider.Windows.cs (1)
535if (keyBlob[0] != CapiHelper.PUBLICKEYBLOB)
System\Security\Cryptography\RSACryptoServiceProvider.Windows.cs (1)
541if (keyBlob[0] != CapiHelper.PUBLICKEYBLOB)