mscorlib(4.0.0.0) API with additions
MD5.cs
2 
4 {
6  [ComVisible(true)]
7  public abstract class MD5 : HashAlgorithm
8  {
10  protected MD5()
11  {
12  HashSizeValue = 128;
13  }
14 
18  public new static MD5 Create()
19  {
20  return Create("System.Security.Cryptography.MD5");
21  }
22 
27  public new static MD5 Create(string algName)
28  {
29  return (MD5)CryptoConfig.CreateFromName(algName);
30  }
31  }
32 }
MD5()
Initializes a new instance of T:System.Security.Cryptography.MD5.
Definition: MD5.cs:10
static new MD5 Create(string algName)
Creates an instance of the specified implementation of the T:System.Security.Cryptography....
Definition: MD5.cs:27
int HashSizeValue
Represents the size, in bits, of the computed hash code.
static object CreateFromName(string name, params object[] args)
Creates a new instance of the specified cryptographic object with the specified arguments.
Definition: __Canon.cs:3
Represents the abstract class from which all implementations of the T:System.Security....
Definition: MD5.cs:7
Accesses the cryptography configuration information.
Definition: CryptoConfig.cs:17
Represents the base class from which all implementations of cryptographic hash algorithms must derive...
Definition: HashAlgorithm.cs:8
static new MD5 Create()
Creates an instance of the default implementation of the T:System.Security.Cryptography....
Definition: MD5.cs:18