
command line - Simplest way to password protect a directory and its ...
I would like to be able to encrypt the directory or decrypt it using a password. Command line would be nicest to use. I don't want to have to create a new file as an encrypted version and then, delete the …
shell script - gpg asks for password even with --passphrase - Unix ...
I expect the following command to extract the gpg file without asking for password: gpg --passphrase 1234 file.gpg But it asks for the password. Why? This also have the same behavior: gpg --
How to Create an Encrypted Password - Unix & Linux Stack Exchange
I want to know how can I create an encrypted password in Ubuntu 14.04 LTS. Tried this: makepasswd --crypt-md5 password_here It did not work for me. It is throwing this Error: sysadmin@localhost:~$
What are ways to encrypt a password inside an environment variable
What exactly are you trying to do here? Most applications that use http_proxy do not support any form of encryption of the credentials, if that is what you are asking. So you could certainly encrypt it, but …
How to Use Encrypted password in shell script AIX
Encrypt with: $ openssl aes-256-cbc -salt -in user.txt -out user.txt.enc -pass file:pass.txt Decrypt with: $ openssl aes-256-cbc -d -salt -in user.txt.enc -out user.txt.dec -pass file:pass.txt In order to have more …
How can I either encrypt or render my shell script unreadable?
How can I encrypt or scramble my shell script so that it's unreadable to the naked eye? Either method would be acceptable, please provide specific steps.
How to encrypt messages/text with RSA & OpenSSL?
I have Alice's public key. I want to send Alice an RSA encrypted message. How can I do it using the openssl command? The message is: Hi Alice! Please bring malacpörkölt for dinner!
How to pass string (not file) to openssl? - Unix & Linux Stack Exchange
The flags are documented in the manual page man openssl-enc: -a: base64 process the data. This means that if encryption is taking place the data is base64 encoded after encryption. If decryption is …
Encrypt file list when creating 7zip archive on command line
From 7zip 's man page, I know that one can create an encrypted archive by passing the p switch. But the file lists of those archives aren't encrypted. How do I encrypt the file list of a 7zip archive when …
Best way to encrypt a file with just password (no keypairs) that is ...
Jun 25, 2023 · It's not an archiver, but it does encrypt and decrypt files, including those created by archivers like tar or zip. While GnuPG can encrypt/decrypt with key pairs, the --symmetric or -c …