SHA384.Create Método

Definição

Permite que implementações específicas desta classe abstrata sejam instanciadas.Allows specific implementations of this abstract class to be instantiated.

Sobrecargas

Create()

Cria uma nova instância da implementação padrão do SHA384.Creates an instance of the default implementation of SHA384.

Create(String)

Cria uma nova instância de uma implementação especificada de SHA384.Creates an instance of a specified implementation of SHA384.

Create()

Cria uma nova instância da implementação padrão do SHA384.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

Retornos

SHA384

Uma nova instância de SHA384.A new instance of SHA384.

Exceções

O algoritmo foi usado com o modo FIPS (Federal Information Processing Standards) habilitado, mas ele não é compatível com FIPS.The algorithm was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible.

Aplica-se a

Create(String)

Cria uma nova instância de uma implementação especificada de SHA384.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);
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

Parâmetros

hashName
String

O nome da implementação específica do SHA384 a ser usada.The name of the specific implementation of SHA384 to be used.

Retornos

SHA384

Uma nova instância de SHA384 usando a implementação especificada.A new instance of SHA384 using the specified implementation.

Exceções

O algoritmo descrito pelo parâmetro hashName foi usado com o modo FIPS (Federal Information Processing Standards) habilitado, mas ele não é compatível com FIPS.The algorithm described by the hashName parameter was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible.

Aplica-se a