System::Security::Cryptography::DSACryptoServiceProvider::SignData method

DSACryptoServiceProvider::SignData(const ByteArrayPtr&) method

Computes the signature of specified input value.

ByteArrayPtr System::Security::Cryptography::DSACryptoServiceProvider::SignData(const ByteArrayPtr &buffer)
ParameterTypeDescription
bufferconst ByteArrayPtr&Buffer to read input data from.

ReturnValue

DSA signature for specified data.

See Also

DSACryptoServiceProvider::SignData(const SharedPtr<IO::Stream>&) method

Computes the signature of specified input value.

ByteArrayPtr System::Security::Cryptography::DSACryptoServiceProvider::SignData(const SharedPtr<IO::Stream> &input_stream)
ParameterTypeDescription
input_streamconst SharedPtr<IO::Stream>&Stream to read data being signed from.

ReturnValue

DSA signature for specified data.

See Also

DSACryptoServiceProvider::SignData(const ByteArrayPtr&, int32_t, int32_t) method

Computes the signature of specified input value.

ByteArrayPtr System::Security::Cryptography::DSACryptoServiceProvider::SignData(const ByteArrayPtr &buffer, int32_t offset, int32_t count)
ParameterTypeDescription
bufferconst ByteArrayPtr&Buffer to read input data from.
offsetint32_tInput buffer slice beginning index.
countint32_tInput buffer slice size.

ReturnValue

DSA signature for specified data.

See Also

DSACryptoServiceProvider::SignData(const ByteArrayPtr&, const HashAlgorithmName&) method

RTTI information.

ByteArrayPtr System::Security::Cryptography::DSA::SignData(const ByteArrayPtr &data, const HashAlgorithmName &hash_algorithm)

See Also

DSACryptoServiceProvider::SignData(const ByteArrayPtr&, int32_t, int32_t, const HashAlgorithmName&) method

RTTI information.

ByteArrayPtr System::Security::Cryptography::DSA::SignData(const ByteArrayPtr &data, int32_t offset, int32_t count, const HashAlgorithmName &hash_algorithm)

See Also

DSACryptoServiceProvider::SignData(const StreamPtr&, const HashAlgorithmName&) method

RTTI information.

ByteArrayPtr System::Security::Cryptography::DSA::SignData(const StreamPtr &stream, const HashAlgorithmName &hash_algorithm)

See Also