This closes #192 - missing main method and doc about it
This commit is contained in:
commit
ffc3db2c99
|
@ -98,6 +98,24 @@ public class DefaultSensitiveStringCodec implements SensitiveDataCodec<String>
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* This main class is as documented on configuration-index.md, where the user can mask the password here. *
|
||||
* @param args
|
||||
* @throws Exception
|
||||
*/
|
||||
public static void main(String[] args) throws Exception
|
||||
{
|
||||
if (args.length != 1)
|
||||
{
|
||||
System.err.println("Use: java -cp <classPath> org.apache.activemq.utils.DefaultSensitiveStringCodec password-to-encode");
|
||||
System.err.println("Error: no password on the args");
|
||||
System.exit(-1);
|
||||
}
|
||||
DefaultSensitiveStringCodec codec = new DefaultSensitiveStringCodec();
|
||||
Object encode = codec.encode(args[0]);
|
||||
System.out.println("Encoded password (without quotes): \"" + encode + "\"");
|
||||
}
|
||||
|
||||
private void updateKey(String key)
|
||||
{
|
||||
this.internalKey = key.getBytes();
|
||||
|
|
|
@ -428,13 +428,15 @@ org.apache.activemq.utils.DefaultSensitiveStringCodec. It has both
|
|||
encoding and decoding capabilities. It uses java.crypto.Cipher utilities
|
||||
to encrypt (encode) a plaintext password and decrypt a mask string using
|
||||
same algorithm. Using this decoder/encoder is pretty straightforward. To
|
||||
get a mask for a password, just run the following in command line:
|
||||
get a mask for a password, just run the main class at org.apache.activemq.utils.DefaultSensitiveStringCodec.
|
||||
|
||||
An easy way to do it is through activemq-tools-<VERSION>-jar-with-dependencies.jar since it has all the dependencies:
|
||||
|
||||
```sh
|
||||
java org.apache.activemq.utils.DefaultSensitiveStringCodec "your plaintext password"
|
||||
java -cp activemq-tools-6.0.0-jar-with-dependencies.jar org.apache.activemq.utils.DefaultSensitiveStringCodec "your plaintext password"
|
||||
```
|
||||
|
||||
Make sure the classpath is correct. You'll get something like
|
||||
If you don't want to use the jar-with-dependencies, make sure the classpath is correct. You'll get something like
|
||||
|
||||
```
|
||||
Encoded password: 80cf731af62c290
|
||||
|
|
Loading…
Reference in New Issue