CreateDecryptor()

SymmetricAlgorithm::CreateDecryptor() method

Creates decryptor with parameters associated with algorithm object.

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

Return Value

Newly created decryptor object.

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

Creates decryptor with explicit parameters.

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

Arguments

ParameterTypeDescription
rgbKeySystem::ArrayPtr<uint8_t>Key to use.
rgbIVSystem::ArrayPtr<uint8_t>Initial value to use.

Return Value

Newly created decryptor object.

See Also