CreateDecryptor()

RC2Managed::CreateDecryptor(System::ArrayPtr<uint8_t>, System::ArrayPtr<uint8_t>) method

Creates decryptor object with explicit parameters.

SharedPtr<ICryptoTransform> System::Security::Cryptography::RC2Managed::CreateDecryptor(System::ArrayPtr<uint8_t> rgbKey, System::ArrayPtr<uint8_t> rgbIV) override

Arguments

ParameterTypeDescription
rgbKeySystem::ArrayPtr<uint8_t>Encryption key in byte array form.
rgbIVSystem::ArrayPtr<uint8_t>Initial value in byte array form.

Return Value

Newly created decryptor object.

RC2Managed::CreateDecryptor() method

Creates decryptor object with parameters defined by algorithm object.

virtual SharedPtr<ICryptoTransform> System::Security::Cryptography::SymmetricAlgorithm::CreateDecryptor()

RC2Managed::CreateDecryptor(System::ArrayPtr<uint8_t>, System::ArrayPtr<uint8_t>) method

Creates decryptor object with parameters defined by algorithm object.

virtual SharedPtr<ICryptoTransform> System::Security::Cryptography::SymmetricAlgorithm::CreateDecryptor(System::ArrayPtr<uint8_t> rgbKey, System::ArrayPtr<uint8_t> rgbIV)=0

See Also