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