System::Security::Cryptography::RSAPKCS1SignatureDeformatter class

RSAPKCS1SignatureDeformatter class

Class to verify RSA PKCS #1 v1.5 signature. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.

class RSAPKCS1SignatureDeformatter : public System::Security::Cryptography::AsymmetricSignatureDeformatter

Methods

MethodDescription
RSAPKCS1SignatureDeformatter()RTTI information.
RSAPKCS1SignatureDeformatter(const System::SharedPtr<AsymmetricAlgorithm>&)Constructor.
SetHashAlgorithm(System::String) overrideSets hash algorithm to use.
SetKey(System::SharedPtr<AsymmetricAlgorithm>) overrideSets key value. Not implemented.
VerifySignature(System::ArrayPtr<uint8_t>, System::ArrayPtr<uint8_t>) overrideVerifies the signature of data hash.

See Also