System::Security::Cryptography::SymmetricAlgorithm::CreateEncryptor método

SymmetricAlgorithm::CreateEncryptor() method

Crea un cifrador con los parámetros asociados al objeto del algoritmo.

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

ReturnValue

Objeto cifrador recién creado.

Ver también

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

Crea un cifrador con parámetros explícitos.

virtual SharedPtr<ICryptoTransform> System::Security::Cryptography::SymmetricAlgorithm::CreateEncryptor(System::ArrayPtr<uint8_t> rgbKey, System::ArrayPtr<uint8_t> rgbIV)=0
ParámetroTipoDescripción
rgbKeySystem::ArrayPtr<uint8_t>Clave a usar.
rgbIVSystem::ArrayPtr<uint8_t>Valor inicial a usar.

ReturnValue

Objeto cifrador recién creado.

Ver también