Goedel.Cryptography.CryptoProviderSignatureRSA.Generate C# (CSharp) Method

Generate() public method

Generate a new RSA Key Pair with the Key size specified when the instance was created.
public Generate ( KeySecurity KeySecurity ) : void
KeySecurity KeySecurity
return void
        public override void Generate(KeySecurity KeySecurity) {
            _RSAKeyPair = new RSAKeyPair(KeySize);
            _RSAKeyPair.Persist(KeySecurity);
            }