PC & IT SUPPORT MADE EASY FORUM
Would you like to react to this message? Create an account in a few clicks or log in to continue.

AES Encryption For Linux

Go down

AES Encryption For Linux Empty AES Encryption For Linux

Post by jamied_uk 15th August 2016, 15:50



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
jamied_uk
jamied_uk
Admin

Posts : 3053
Join date : 2010-05-09
Age : 41
Location : UK

https://jnet.sytes.net

Back to top Go down

AES Encryption For Linux Empty Re: AES Encryption For Linux

Post by jamied_uk 30th April 2017, 22:54

Now for Script & Function:



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
AES Encryption For Linux Attachment
aescrypt-3.16.zip You don't have permission to download attachments.(115 Kb) Downloaded 0 times
jamied_uk
jamied_uk
Admin

Posts : 3053
Join date : 2010-05-09
Age : 41
Location : UK

https://jnet.sytes.net

Back to top Go down

Back to top


 
Permissions in this forum:
You cannot reply to topics in this forum