This command line tool enables you to encrypt or decrypt passwords for the purge command, the supplier command line and for the user registry of WebSphere.
You can execute the script from the Encryptor/bin directory, located in the EBICS Server installation.
This section provides information about the principal commands you execute using the encryptor command line tool.
For additional details about encryptor commands, refer to the command help available in the command line interface.
The general syntax of the encryptor line command is:
encryptor.[bat|sh] (-e|-d) (-AES|B64) <string>
| Action | Option | Comments |
|---|---|---|
| -e | -AES | Cipher the clear string with a symmetric AES key |
| -B64 | Encode the clear string into BASE64 | |
| -d | -AES | Decipher the ciphered string with a symmetric AES key |
| -B64 | Decode the string encoded in BASE64 |
encryptor.sh –e –AES <user1_password>
This example ciphers the string <user1_password> using a symmetric AES key.
encryptor.sh –d –B64 cGFzc3dvcmQ=
This example decodes the BASE64 string cGFzc3dvcmQ=
The encryptor only supports strings without space characters. If a string that contains a space character is provided, only the first part is encrypted or decrypted.