Goedel.Cryptography.Jose.PublicKeyRSA.GetKeyPair C# (CSharp) 메소드

GetKeyPair() 공개 메소드

Extract an RSA KeyPair.
public GetKeyPair ( ) : KeyPair
리턴 Goedel.Cryptography.KeyPair
        public override KeyPair GetKeyPair() {
            var Parameters = RSAParameters();
            return new RSAKeyPair(Parameters);
            }