mscorlib(4.0.0.0) API with additions
SHA384.cs
2 
4 {
6  [ComVisible(true)]
7  public abstract class SHA384 : HashAlgorithm
8  {
10  protected SHA384()
11  {
12  HashSizeValue = 384;
13  }
14 
18  public new static SHA384 Create()
19  {
20  return Create("System.Security.Cryptography.SHA384");
21  }
22 
27  public new static SHA384 Create(string hashName)
28  {
29  return (SHA384)CryptoConfig.CreateFromName(hashName);
30  }
31  }
32 }
SHA384()
Initializes a new instance of T:System.Security.Cryptography.SHA384.
Definition: SHA384.cs:10
Computes the T:System.Security.Cryptography.SHA384 hash for the input data.
Definition: SHA384.cs:7
static new SHA384 Create()
Creates an instance of the default implementation of T:System.Security.Cryptography....
Definition: SHA384.cs:18
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
static new SHA384 Create(string hashName)
Creates an instance of a specified implementation of T:System.Security.Cryptography....
Definition: SHA384.cs:27
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