...
You can get a crypted version of your password with the bitronix.tm.utils.CryptoEngine class. It contains a main method so you can call it from the command line:
| Code Block |
|---|
java -jarcp btm-2.0.1.jar bitronix.tm.utils.CryptoEngine Bitronix Transaction Manager password property crypter Usage: CryptoEngine <password> [cipher] where: <password> is mandatory and is the resource password to crypt [cipher] is optional and is the cipher to be used to crypt the password |
You can just give it the password to encrypt on the command line to get its crypted version:
| Code Block |
|---|
java -jarcp btm-2.0.1.jar bitronix.tm.utils.CryptoEngine myPassword Bitronix Transaction Manager password property crypter crypted password property value: {DES}oBg90wRyVhWcCrwu51xGmw== |
...