linux - 使用 bash shell 脚本加密文件

标签 linux bash shell encryption openssl

我想使用 openssl 加密文件。我可以通过使用

openssl des3 -salt -in /pritom/uaeyha_com.sql -out /pritom/a.ss 

当我运行这个命令时,它从我这里得到了两次密码。我想用脚本设置密码,我用过

openssl des3 -salt -in /pritom/uaeyha_com.sql -out /pritom/a.ss -pass pritom 

但它给了我以下错误:

Invalid password argument "pritom"
Error getting password 

我现在可以做什么?

最佳答案

尝试这样的事情 -

openssl des3 -salt -in /pritom/uaeyha_com.sql -out /pritom/a.ss -pass pass:pritom

来自man页:

PASS PHRASE ARGUMENTS<br/> Several commands accept password arguments, typically using -passin and -passout for input and output passwords respectively. These allow the password to be obtained from a variety of sources. Both of these options take a single argument whose format is described below. If no password argument is given and a password is required then the user is prompted to enter one: this will typically be read from the current terminal with echoing turned off.

   pass:password
             the actual password is password. Since the password is visible to utilities (like 'ps' under Unix)
             this form should only be used where security is not important.

   env:var   obtain the password from the environment variable var. Since the environment of other processes is
             visible on certain platforms (e.g. ps under certain Unix OSes) this option should be used with
             caution.

   file:pathname
             the first line of pathname is the password. If the same pathname argument is supplied to -passin and
             -passout arguments then the first line will be used for the input password and the next line for the
             output password. pathname need not refer to a regular file: it could for example refer to a device
             or named pipe.

   fd:number read the password from the file descriptor number. This can be used to send the data via a pipe for
             example.

   stdin     read the password from standard input.

关于linux - 使用 bash shell 脚本加密文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8641109/

相关文章:

linux - 从嵌入式 Linux 上的 shell 控制多个后台进程

shell - 如何更改奇点容器中的默认提示

macos - 使用 shell 脚本删除派生数据

bash:在文件夹中以 '.' 开头的文件循环时摆脱 '..' 和 '.'

bash - && 在将输出重定向到文件时做了什么?

linux - 删除旧安装后在linux中安装apache2

c - Netbeans 可执行 Linux C

python - letsencrypt 失败,ImportError : No module named interface

regex - Bash - 与正则表达式匹配的多行数(可能是 oneliner?)

macos - Bash:遍历文本文件中列出的文件并 move 它们