System::Security::Cryptography::RSACryptoServiceProvider::SignData metodo

RSACryptoServiceProvider::SignData(const ByteArrayPtr&, const SharedPtr<Object>&) method

Calcola la firma del valore di input specificato.

ByteArrayPtr System::Security::Cryptography::RSACryptoServiceProvider::SignData(const ByteArrayPtr &buffer, const SharedPtr<Object> &halg)
ParametroTipoDescrizione
bufferconst ByteArrayPtr&Buffer da cui leggere i dati di input.
halgconst SharedPtr<Object>&Algoritmo di hash da utilizzare.

ReturnValue

RSA signature for specified data.

Vedi anche

RSACryptoServiceProvider::SignData(const ByteArrayPtr&, int32_t, int32_t, const SharedPtr<Object>&) method

Calcola la firma del valore di input specificato.

ByteArrayPtr System::Security::Cryptography::RSACryptoServiceProvider::SignData(const ByteArrayPtr &buffer, int32_t offset, int32_t count, const SharedPtr<Object> &halg)
ParametroTipoDescrizione
bufferconst ByteArrayPtr&Buffer da cui leggere i dati di input.
offsetint32_tIndice di inizio della porzione del buffer di input.
countint32_tDimensione della porzione del buffer di input.
halgconst SharedPtr<Object>&Algoritmo di hash da utilizzare.

ReturnValue

RSA signature for specified data.

Vedi anche

RSACryptoServiceProvider::SignData(const SharedPtr<IO::Stream>&, const SharedPtr<Object>&) method

Calcola la firma del valore di input specificato.

ByteArrayPtr System::Security::Cryptography::RSACryptoServiceProvider::SignData(const SharedPtr<IO::Stream> &input_stream, const SharedPtr<Object> &halg)
ParametroTipoDescrizione
input_streamconst SharedPtr<IO::Stream>&Stream da cui leggere i dati da firmare.
halgconst SharedPtr<Object>&Algoritmo di hash da utilizzare.

ReturnValue

RSA signature for specified data.

Vedi anche