System.Security.Cryptography.DSA.Create C# (CSharp) Method

Create() public static method

public static Create ( ) : DSA
return DSA
        public static new DSA Create()
        {
            return new DSAImplementation.DSAOpenSsl();
        }
    }

Same methods

DSA::Create ( string algName ) : DSA

Usage Example

Beispiel #1
0
 public DSACryptoServiceProvider() : base()
 {
     // This class wraps DSA
     _impl   = DSA.Create();
     KeySize = 1024;
 }