System::Security::Cryptography::RSACryptoServiceProvider::SignHash metodo

RSACryptoServiceProvider::SignHash(ByteArrayPtr, HashAlgorithmName, SharedPtr<RSASignaturePadding>) method

Calcola la firma per il valore hash specificato.

ByteArrayPtr System::Security::Cryptography::RSACryptoServiceProvider::SignHash(ByteArrayPtr hash, HashAlgorithmName hash_algorithm, SharedPtr<RSASignaturePadding> padding) override
ParametroTipoDescrizione
hashByteArrayPtrValore hash.
hash_algorithmHashAlgorithmNameAlgoritmo hash.
paddingSharedPtr<RSASignaturePadding>Modalità di padding. restituisce la firma RSA per l’hash specificato.

Vedi anche

RSACryptoServiceProvider::SignHash(const ByteArrayPtr&, const String&) method

Calcola la firma del valore di input specificato. Non implementato.

ByteArrayPtr System::Security::Cryptography::RSACryptoServiceProvider::SignHash(const ByteArrayPtr &rgb_hash, const String &str)
ParametroTipoDescrizione
rgb_hashconst ByteArrayPtr&Valore hash dei dati da firmare.
strconst String&Identificatore dell’algoritmo hash usato per creare l’hash.

ReturnValue

RSA signature for specified data.

Vedi anche