SHA384.Create Method

Definition

Allows specific implementations of this abstract class to be instantiated.

Overloads

Name Description
Create()

Creates an instance of the default implementation of SHA384.

Create(String)

Creates an instance of a specified implementation of SHA384.

Create()

Creates an instance of the default implementation of SHA384.

public:
 static System::Security::Cryptography::SHA384 ^ Create();
public static System.Security.Cryptography.SHA384 Create();
static member Create : unit -> System.Security.Cryptography.SHA384
Public Shared Function Create () As SHA384

Returns

A new instance of SHA384.

Exceptions

The algorithm was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible.

See also

Applies to

Create(String)

Creates an instance of a specified implementation of SHA384.

public:
 static System::Security::Cryptography::SHA384 ^ Create(System::String ^ hashName);
public static System.Security.Cryptography.SHA384 Create(string hashName);
static member Create : string -> System.Security.Cryptography.SHA384
Public Shared Function Create (hashName As String) As SHA384

Parameters

hashName
String

The name of the specific implementation of SHA384 to be used.

Returns

A new instance of SHA384 using the specified implementation.

Exceptions

The algorithm described by the hashName parameter was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible.

See also

Applies to