System::Security::Cryptography::RC2Managed::CreateEncryptor method

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

Creates encryptor object with explicit parameters.

SharedPtr<ICryptoTransform> System::Security::Cryptography::RC2Managed::CreateEncryptor(System::ArrayPtr<uint8_t> rgbKey, System::ArrayPtr<uint8_t> rgbIV) override
ParameterTypeDescription
rgbKeySystem::ArrayPtr<uint8_t>Encryption key in byte array form.
rgbIVSystem::ArrayPtr<uint8_t>Initial value in byte array form.

ReturnValue

Newly created encryptor object.

See Also

RC2Managed::CreateEncryptor() method

Creates encryptor object with parameters defined by algorithm object.

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

See Also