System::Security::Cryptography::RSAPKCS1SignatureFormatter class

RSAPKCS1SignatureFormatter class

Signs data with an 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 RSAPKCS1SignatureFormatter : public System::Security::Cryptography::AsymmetricSignatureFormatter

Methods

MethodDescription
CreateSignature(System::ArrayPtr<uint8_t>) overrideSigns data.
RSAPKCS1SignatureFormatter()RTTI information.
RSAPKCS1SignatureFormatter(const System::SharedPtr<AsymmetricAlgorithm>&)Constructor.
SetHashAlgorithm(System::String) overrideSets hash algorithm to use.
SetKey(System::SharedPtr<AsymmetricAlgorithm>) overrideSets key value. Not implemented.
~RSAPKCS1SignatureFormatter()Destructor.

See Also