AES Encryption For Linux
Page 1 of 1
AES Encryption For Linux
Before installing you will need wine and wine tricks installed!
(If you've used the Mint 18.1 Auto Script Wine will be Installed before This Crypto App)!
- Code:
wget https://www.aescrypt.com/download/v3/linux/AESCrypt-GUI-3.10-Linux-x86_64-Install.tgz
tar -zxf AESCrypt-GUI-3.10-Linux-x86_64-Install.tgz
sudo ./AESCrypt-GUI-3.10-Linux-x86_64-Install
In Terminal Example:
- Code:
/usr/bin/aescrypt-gui Notes.txt
- Code:
/usr/bin/aescrypt-gui %f
But it should be in menu after install.
when you create a link it can prompt you to ask if you also want it in your menu upon creation. (you might want 2 shortcuts for whatever reason).
After Notes.txt file is encypted you will get a new file called Notes.txt.aes
To Decrypt this file use following command:
- Code:
/usr/bin/aescrypt-gui Notes.txt.aes
Link
aescrypt.com/download
Re: AES Encryption For Linux
Now for Script & Function:
aescrypt.com/download/
make
Usage:
Enc:
Dec:
aescrypt.com/download/
make
- Code:
You can also make from Source
sudo make install
make -C src install
make[1]: Entering directory '/home/USERNAME/Documents/Scripts/Other/aescrypt-3.16/src'
install -o root -g root -m 755 aescrypt /usr/bin
install -o root -g root -m 755 aescrypt_keygen /usr/bin
make[1]: Leaving directory '/home/USERNAME/Documents/Scripts/Other/aescrypt-3.16/src'
install -o root -g root -m 755 man/aescrypt.1 /usr/share/man/man1/aescrypt.1
install -o root -g root -m 755 man/aescrypt_keygen.1 /usr/share/man/man1/aescrypt_keygen.1
gzip /usr/share/man/man1/aescrypt.1
mandb 2>/dev/null >/dev/null
now copy to bin folder
sudo cp /home/USERNAME/Documents/Scripts/Other/aescrypt-3.16/gui/aescrypt-gui /usr/bin/aescrypt-gui
aes test.txt
- Code:
#!/bin/bash
# Usage: ./Run.sh
# /usr/bin/aescrypt-gui
var="$1"
/usr/bin/aescrypt-gui $var
- Code:
sudo gedit .bashrc
- Code:
function aes() {
var="$1"
/usr/bin/aescrypt-gui $var
}
Usage:
Enc:
- Code:
aes test.txt
Dec:
- Code:
aes test.txt.aes
- Attachments
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum