CreateSignature()

AsymmetricSignatureFormatter::CreateSignature(System::ArrayPtr<uint8_t>) method

Creates the siguature for the specified data.

virtual System::ArrayPtr<uint8_t> System::Security::Cryptography::AsymmetricSignatureFormatter::CreateSignature(System::ArrayPtr<uint8_t> rgbHash)=0

Arguments

ParameterTypeDescription
rgbHashSystem::ArrayPtr<uint8_t>Data to calculate hash for.

Return Value

Calculated signature in byte array form.

AsymmetricSignatureFormatter::CreateSignature(System::SharedPtr<HashAlgorithm>) method

Creates the signature for the specified hash value.

virtual System::ArrayPtr<uint8_t> System::Security::Cryptography::AsymmetricSignatureFormatter::CreateSignature(System::SharedPtr<HashAlgorithm> hash)

Arguments

ParameterTypeDescription
hashSystem::SharedPtr<HashAlgorithm>Hash algorithm to use when creating signature.

Return Value

Calculated signature in byte array form.

See Also