[Arch] fix network, delete bar_scripts
[dotfiles_afify.git] / .scripts / vera.sh
blob3ce0d6adaf3e98a1e29e111e040dd671db811c0a
1 #!/usr/bin/env bash
3 #==============================================================================
4 # Name : veracrypt
5 # GitHub : Afify
6 # Copyright : MIT
7 # Version : 0.2
8 # Description : Create encrypted volume file
9 #==============================================================================
12 distination="/home/hassan"
13 filename="$distination/secret_file.vera"
14 password="topsecret"
15 size="10m"
17 encryption="AES"
18 filetype="exfat"
19 hash_type="sha-512"
20 volume_type="normal"
22 #Create a new volume:
23 veracrypt -t --create $filename --filesystem $filetype --encryption $encryption --password $password --size $size --volume-type $volume_type --hash $hash_type --pim=0 -k "" --random-source=/dev/urandom
26 #Mount a volume:
27 #===============
28 #veracrypt --mount filename /media/vera/
30 #Unmout all volumes:
31 #===================
32 #veracrypt -d