Create() public static method

public static Create ( ) : DES
return DES
 public DESCryptoServiceProvider() : base()
 {
     // This class wraps DES
     _impl = DES.Create();
     _impl.FeedbackSize = 8;
 }
 /// <summary>Creates an instance of a cryptographic object to perform the Data Encryption Standard (<see cref="T:System.Security.Cryptography.DES" />) algorithm.</summary>
 /// <returns>A cryptographic object.</returns>
 // Token: 0x06002157 RID: 8535 RVA: 0x00075F16 File Offset: 0x00074116
 public new static DES Create()
 {
     return(DES.Create("System.Security.Cryptography.DES"));
 }