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