![]() |
mcrypt - Printable Version +- Linux Lite Forums (https://www.freecinema2022.gq/forums) +-- Forum: Software - Support (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=5) +--- Forum: Installing Software (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=18) +--- Thread: mcrypt (/showthread.php?tid=8096) |
mcrypt - LLUser - 01-29-2022 Followed the guidance under "File Encryption" in LL Help Manual, and made a custom right click action in file manager to make encryption/decryption of files easy. Commands used: Encryption: x-terminal-emulator -t "Encrypt file..." -e "mcrypt %f" Decryption: x-terminal-emulator -t "Decrypt file..." -e "mcrypt -d %f" Can someone please advice which encryption algorithm is used in above? Re: mcrypt - trinidad - 01-29-2022 https://www.systutorials.com/docs/linux/man/1-mcrypt/ Probably CBC, if you did not specify one initially. --list would show what is available. TC Re: mcrypt - LLUser - 01-31-2022 Thanks TC. |