Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The BlueriqEncryptor is located in the Runtime\Java\Webapp\Tools folder in the release zip. This is a java console application which can be used to create encrypted passwords to be used for password properties in the Runtime.

Start the application as a java executable jar:

Code Block
>java -jar BlueriqEncryptor.jar
Enter the value to be encrypted: 

The application will ask for a value to be encrypted. Enter a value and press enter to get the encrypted value, for example 'welcome'.

Code Block
Enter the value to be encrypted: welcome
Encrypted value for welcome = _-_encryptedValue_-_Cm1+yX5Ziyk=
Enter the value to be encrypted:

In this case the encrypted value is "_-_encryptedValue_-_Cm1+yX5Ziyk=". This value may be used in in property files where a password is expected.

Afterwards it is possible to enter a new value to be encrypted. Exit the application with Ctrl-C.