![]() |
Openssl - Wersja do druku +- ToolsX Windows 11 Tuning (http://darmowe-gry.5v.pl) +-- Dział: Linux (http://darmowe-gry.5v.pl/forumdisplay.php?fid=281) +--- Dział: ![]() (http://darmowe-gry.5v.pl/forumdisplay.php?fid=286) +---- Dział: ![]() +---- Wątek: Openssl (/showthread.php?tid=386) |
Openssl - admin - 11-12-2018 encryption cat yourscript.sh | openssl aes-128-cbc -a -salt -k yourpassword > yourscript.enc Decryption with openssl: cat yourscript.enc | openssl aes-128-cbc -a -d -salt -k yourpassword > yourscript.dec |