2 overrides of ExportRSAPublicKey
System.Security.Cryptography (2)
src\libraries\Common\src\System\Security\Cryptography\RSAOpenSsl.cs (1)
384public override byte[] ExportRSAPublicKey()
System\Security\Cryptography\RSAWrapper.cs (1)
146public override byte[] ExportRSAPublicKey() => _wrapped.ExportRSAPublicKey();
3 references to ExportRSAPublicKey
System.Security.Cryptography (3)
System\Security\Cryptography\RSA.cs (1)
1297byte[] exported = ExportRSAPublicKey();
System\Security\Cryptography\RSAWrapper.cs (1)
146public override byte[] ExportRSAPublicKey() => _wrapped.ExportRSAPublicKey();
System\Security\Cryptography\X509Certificates\RSAPkcs1X509SignatureGenerator.cs (1)
44new AsnEncodedData(oid, rsa.ExportRSAPublicKey(), skipCopy: true));