Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
# Encrypt orig_file to enc_file.
openssl bf -salt -in ./orig_file >./enc_file
# Decrypt enc_file back to orig_file.
openssl bf -d -in ./enc_file >./orig_file2