7 references to Export
System.Security.Cryptography (7)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\MLDsaCng.Windows.cs (1)
460byte[] blob = _key.Export(blobFormat);
System\Security\Cryptography\CngHelpers.cs (1)
70byte[] keyBlob = cngKey.Export(s_cipherKeyBlobFormat);
System\Security\Cryptography\DSACng.ImportExport.cs (1)
15return Key.Export(blobFormat);
System\Security\Cryptography\ECCng.ImportExport.cs (3)
32return key.Export(blobFormat); 38return key.Export(blobFormat); 67byte[] blob = key.Export(format);
System\Security\Cryptography\RSACng.ImportExport.cs (1)
50return Key.Export(includePrivateParameters ? s_rsaFullPrivateBlob : s_rsaPublicBlob);