diff options
author | Instrumental <jonathan.gathman@att.com> | 2018-07-05 15:00:18 -0500 |
---|---|---|
committer | Instrumental <jonathan.gathman@att.com> | 2018-07-05 15:00:23 -0500 |
commit | d37b5467a3b8b375b603579d2888a4443a8b06a7 (patch) | |
tree | 54baad3b69be2386bf43e88acac86a15f686a68d /cadi/core/src/test | |
parent | d41c5dc8c946fef66b64e8f95392b07403a93638 (diff) |
Refine Agent for cadi utils
Issue-ID: AAF-361
Change-Id: Id07b60181b906e65aefb24cbe0d192e362c2c3f4
Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'cadi/core/src/test')
-rw-r--r-- | cadi/core/src/test/java/org/onap/aaf/cadi/test/JU_CmdLine.java | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/cadi/core/src/test/java/org/onap/aaf/cadi/test/JU_CmdLine.java b/cadi/core/src/test/java/org/onap/aaf/cadi/test/JU_CmdLine.java index efcc1b29..76cd225d 100644 --- a/cadi/core/src/test/java/org/onap/aaf/cadi/test/JU_CmdLine.java +++ b/cadi/core/src/test/java/org/onap/aaf/cadi/test/JU_CmdLine.java @@ -228,20 +228,20 @@ public class JU_CmdLine { @Test public void showHelpTest() { String expected = - "Usage: java -jar <this jar> ...\n" + - " keygen [<keyfile>] (Generates Key on file, or Std Out)\n" + - " digest [<passwd>|-i|] <keyfile> (Encrypts Password with \"keyfile\"\n" + - " if passwd = -i, will read StdIin\n" + - " if passwd is blank, will ask securely)\n" + - " passgen <digits> (Generate Password of given size)\n" + - " urlgen <digits> (Generate URL field of given size)\n" + - " csptest (Tests for CSP compatibility)\n" + - " encode64 <your text> (Encodes to Base64)\n" + - " decode64 <base64 encoded text> (Decodes from Base64)\n" + - " encode64url <your text> (Encodes to Base64 URL charset)\n" + - " decode64url <base64url encoded text> (Decodes from Base64 URL charset)\n" + - " sha256 <text> <salts(s)> (Digest String into SHA256 Hash)\n" + - " md5 <text> (Digest String into MD5 Hash)\n"; + "Usage: java -jar <this jar> ...\n" + + " keygen [<keyfile>] (Generates Key on file, or Std Out)\n" + + " digest [<passwd>|-i|] <keyfile> (Encrypts Password with \"keyfile\"\n" + + " if passwd = -i, will read StdIn\n" + + " if passwd is blank, will ask securely)\n" + + " passgen <digits> (Generate Password of given size)\n" + + " urlgen <digits> (Generate URL field of given size)\n" + + " encode64 <your text> (Encodes to Base64)\n" + + " decode64 <base64 encoded text> (Decodes from Base64)\n" + + " encode64url <your text> (Encodes to Base64 URL charset)\n" + + " decode64url <base64url encoded text> (Decodes from Base64 URL charset)\n" + + " sha256 <text> <salts(s)> (Digest String into SHA256 Hash)\n" + + " md5 <text> (Digest String into MD5 Hash)\n" + ; CmdLine.main(new String[]{}); |