Goedel.Mesh.PublicKey.ExportPrivateParameters C# (CSharp) Method

ExportPrivateParameters() public method

Create a Private Parameters property that contains the private parameters of the key.
public ExportPrivateParameters ( ) : void
return void
        public void ExportPrivateParameters() {
            if (KeyPair.GetType() == typeof(RSAKeyPair)) {
                PrivateParameters = new PrivateKeyRSA(KeyPair as RSAKeyPair);
                }
            }