System::Security::Cryptography::RSACryptoServiceProvider::SignHash método

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

Calcula la firma para el valor hash especificado.

ByteArrayPtr System::Security::Cryptography::RSACryptoServiceProvider::SignHash(ByteArrayPtr hash, HashAlgorithmName hash_algorithm, SharedPtr<RSASignaturePadding> padding) override
ParámetroTipoDescripción
hashByteArrayPtrValor hash.
hash_algorithmHashAlgorithmNameAlgoritmo hash.
paddingSharedPtr<RSASignaturePadding>Modo de relleno. devuelve la firma RSA para el hash especificado.

Ver también

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

Calcula la firma del valor de entrada especificado. No implementado.

ByteArrayPtr System::Security::Cryptography::RSACryptoServiceProvider::SignHash(const ByteArrayPtr &rgb_hash, const String &str)
ParámetroTipoDescripción
rgb_hashconst ByteArrayPtr&Valor hash de los datos a firmar.
strconst String&Identificador del algoritmo de hash usado para crear el hash.

ReturnValue

RSA signature for specified data.

Ver también