From bb5e3802ac2b15029990ca9c6e758bcd65edcd13 Mon Sep 17 00:00:00 2001 From: Vladimir Protsenko Date: Wed, 7 Sep 2022 17:44:57 +0400 Subject: [PATCH] Added tasks for hash, ciphers, ssh, certs lesson. --- 05_hash_ciphers_ssh_certs/tasks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/05_hash_ciphers_ssh_certs/tasks.md b/05_hash_ciphers_ssh_certs/tasks.md index cb85ccd..eb06098 100644 --- a/05_hash_ciphers_ssh_certs/tasks.md +++ b/05_hash_ciphers_ssh_certs/tasks.md @@ -6,7 +6,7 @@ 2. Зашифруйте и расшифруйте данные с помощью openssl enc. Используйте команды: ``` -openssl enc -in infile.txt -out encrypted.dat -e -aes256 -k symmetrickey +openssl enc -in infile.txt -out encrypted.data -e -aes256 -k symmetrickey openssl enc -d -aes-256-cbc -in encrypted.data -out un_encrypted.data ```