Мой университет попросил меня выполнить следующий код и обеспечить 3 разных шифрования / дешифрования, однако по какой-то причине предоставленный код не работает, я обнаружил один и тот же документ несколько раз и не вижу значительных изменений с 2014 года.
Может кто-нибудь помочь, полный код ниже:
$ openssl enc -ciphertype -e -in plain.txt -out cipher.bin \
-K 00112233445566778889aabbccddeeff \
-iv 0102030405060708 ```
Please replace the ciphertype with a specific cipher type, such as -aes-128-cbc, -bf-cbc,
-aes-128-cfb, etc. In this task, you should try at least 3 different ciphers. You can find the meaning
of the command-line options and all the supported cipher types by typing "man enc". We include some
common options for the openssl enc command in the following:
```-in <file> input file
-out <file> output file
-e encrypt
-d decrypt
-K/-iv key/iv in hex is the next argument
-[pP] print the iv/key (then exit if -P)```
that's all that's been provided, i am using Seedlabs and Oracle VM Virtual box with SEEDUbuntu provided from Seedlabs.
I am in the right folder with the correct files available for encryption.
I've tried : -aes-128-cbc -e -in plaintext.txt -out ciphertext.bin \
-K 00112233445566778889aabbccddeeff \
-iv 0102030405060708