Pri*_*tom 13 linux encryption bash shell openssl
我想使用openssl加密文件.我可以通过使用来做到这一点
openssl des3 -salt -in /pritom/uaeyha_com.sql -out /pritom/a.ss
Run Code Online (Sandbox Code Playgroud)
当我运行此命令时,它会从我那里获取密码两次.我想用脚本设置密码,我用过
openssl des3 -salt -in /pritom/uaeyha_com.sql -out /pritom/a.ss -pass pritom
Run Code Online (Sandbox Code Playgroud)
但它给了我以下错误:
Invalid password argument "pritom"
Error getting password
Run Code Online (Sandbox Code Playgroud)
我现在能做什么?
jay*_*ngh 13
尝试这样的事情 -
openssl des3 -salt -in /pritom/uaeyha_com.sql -out /pritom/a.ss -pass pass:pritom
Run Code Online (Sandbox Code Playgroud)
从man页面:
PASS PHRASE ARGUMENTS
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.
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
10625 次 |
| 最近记录: |