Add VeraCrypt app
parent
ea514f92c5
commit
b759d61160
@ -0,0 +1,2 @@
|
||||
nielsbaloe on Github suggested this be added.
|
||||
Botspot added it.
|
@ -0,0 +1,9 @@
|
||||
Open source disk encryption software
|
||||
- Creates a virtual encrypted disk within a file and mounts it as a real disk.
|
||||
- Encrypts an entire partition or storage device such as USB flash drive or hard drive.
|
||||
- Encrypts a partition or drive where Windows is installed (pre-boot authentication).
|
||||
- Encryption is automatic, real-time(on-the-fly) and transparent.
|
||||
- Parallelization and pipelining allow data to be read and written as fast as if the drive was not encrypted.
|
||||
- Encryption can be hardware-accelerated on modern processors.
|
||||
- Provides plausible deniability, in case an adversary forces you to reveal the password: Hidden volume (steganography) and hidden operating system.
|
||||
- More information about the features of VeraCrypt may be found in the documentation.
|
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
Binary file not shown.
After Width: | Height: | Size: 5.8 KiB |
@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
wget -O ~/veracrypt.deb 'https://sourceforge.net/projects/veracrypt/files/VeraCrypt%201.24-Update7/veracrypt-1.24-Update7-Debian-10-armhf.deb/download' || error "Failed to download veracrypt.deb!"
|
||||
|
||||
sudo apt install -y --fix-broken ~/veracrypt.deb || error "Failed to install veracrypt.deb!"
|
||||
|
||||
rm -f ~/veracrypt.deb
|
@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
sudo apt purge -y veracrypt || error "Failed to purge veracrypt package!"
|
@ -0,0 +1 @@
|
||||
https://www.veracrypt.fr/en/Documentation.html
|
Loading…
Reference in New Issue