5 references to Import
System.Core (5)
System\Security\Cryptography\ECDiffieHellmanCngPublicKey.cs (1)
69using (CngKey imported = CngKey.Import(publicKeyBlob, format)) {
System\Security\Cryptography\RsaCng.cs (1)
391CngKey newKey = CngKey.Import(rsaBlob, publicOnly ? s_rsaPublicBlob : s_rsaPrivateBlob);
System\Security\Cryptography\X509Certificates\ECDsaCertificateExtensions.cs (2)
88using (CngKey key = CngKey.Import(keyBlob, blobFormat)) 351CngKey Key = CngKey.Import(keyBlob, CngKeyBlobFormat.EccPublicBlob);
System\Security\Cryptography\X509Certificates\RSACertificateExtensions.cs (1)
51CngKey key = CngKey.Import(cngBlob, CngKeyBlobFormat.GenericPublicBlob);