System.Security.Cryptography.DES.Create C# (CSharp) 메소드

Create() 공개 정적인 메소드

public static Create ( ) : DES
리턴 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