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

Create() public static method

public static Create ( ) : DES
return DES
        public static new DES Create()
        {
            return new DesImplementation();
        }

Same methods

DES::Create ( string algName ) : DES

Usage Example

 public DESCryptoServiceProvider() : base()
 {
     // This class wraps DES
     _impl = DES.Create();
     _impl.FeedbackSize = 8;
 }
All Usage Examples Of System.Security.Cryptography.DES::Create