Encrypting passwords (encrypt) v7
The encrypt
command encrypts the text supplied in an input file and writes the encrypted result to a specified output file. Use the encrypt
command to generate an encrypted password to copy into a text file. This text file is referenced by a Replication Server CLI command that requires a user name and the user’s password.
Synopsis
-encrypt –input infile –output pwdfile
The text in infile
is processed using the MD5 encryption algorithm, and the encrypted text is written to file pwdfile
. Make sure that infile
contains only the text that you want to encrypt and that there are no extra characters or empty lines before or after the text that you want to encrypt.
Parameters
infile
The file containing the text to be encrypted.
pwdfile
The file containing the encrypted form of the text from infile
.
Examples
The file infile
contains the word password
.
password
Executing the encrypt
command produces a file named pwdfile
.
$ java -jar edb-repcli.jar -encrypt -input ~/infile -output ~/pwdfile
The content of file pwdfile contains the encrypted form of password
.
ygJ9AxoJEX854elcVIJPTw==
- On this page
- Synopsis
- Parameters
- Examples