You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by ks...@apache.org on 2013/10/08 04:55:29 UTC

svn commit: r1530139 - /juddi/trunk/juddi-core/src/main/java/org/apache/juddi/v3/auth/CryptorUtil.java

Author: kstam
Date: Tue Oct  8 02:55:29 2013
New Revision: 1530139

URL: http://svn.apache.org/r1530139
Log:
JUDDI-639 fixing scripts for OSX

Added:
    juddi/trunk/juddi-core/src/main/java/org/apache/juddi/v3/auth/CryptorUtil.java

Added: juddi/trunk/juddi-core/src/main/java/org/apache/juddi/v3/auth/CryptorUtil.java
URL: http://svn.apache.org/viewvc/juddi/trunk/juddi-core/src/main/java/org/apache/juddi/v3/auth/CryptorUtil.java?rev=1530139&view=auto
==============================================================================
--- juddi/trunk/juddi-core/src/main/java/org/apache/juddi/v3/auth/CryptorUtil.java (added)
+++ juddi/trunk/juddi-core/src/main/java/org/apache/juddi/v3/auth/CryptorUtil.java Tue Oct  8 02:55:29 2013
@@ -0,0 +1,60 @@
+/*
+ * Copyright 2013 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.juddi.v3.auth;
+
+import org.apache.juddi.v3.client.cryptor.Cryptor;
+import org.apache.juddi.cryptor.CryptorFactory;
+
+/**
+ *
+ * @author <a href="mailto:alexoree@apache.org">Alex O'Ree</a>
+ * @see org.apache.juddi.cryptor.DefaultCryptor
+ */
+public class CryptorUtil {
+
+    public static void main(String[] args) throws Exception {
+        if (args.length == 0) {
+            PrintUsage();
+            return;
+        }
+        String impl = args[0];
+        if (args[0].equalsIgnoreCase("decrypt")) {
+            impl = args[1];
+            Cryptor cryptor = CryptorFactory.getCryptor(impl);
+            System.out.print("Cipher: ");
+            char[] readPassword = System.console().readPassword();
+            System.out.println("Clear: " + cryptor.decrypt(new String(readPassword)));
+        } else {
+            Cryptor cryptor = CryptorFactory.getCryptor(impl);
+            System.out.print("Password: ");
+            char[] readPassword = System.console().readPassword();
+            System.out.println("Cipher: " + cryptor.encrypt(new String(readPassword)));
+        }
+    }
+
+    private static void PrintUsage() {
+        System.out.println("Encrypts a password using the specified crypto provider");
+        System.out.println("Usage: java -cp (classpath) org.apache.juddi.v3.auth.CryptorUtil (CryptoProvider)");
+
+        System.out.println("Provided crypto providers:");
+        System.out.println("\torg.apache.juddi.v3.client.cryptor.DefaultCryptor - uses PBEWithMD5AndDES");
+        System.out.println("\torg.apache.juddi.v3.client.cryptor.TripleDESCrytor - uses TripleDES");
+        System.out.println("\torg.apache.juddi.v3.client.cryptor.AES128Cryptor - uses AES128");
+        System.out.println("\torg.apache.juddi.v3.client.cryptor.AES256Cryptor - uses AES256*");
+        System.out.println();
+        System.out.println("* Requires Unlimited Strength JCE *");
+    }
+}



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@juddi.apache.org
For additional commands, e-mail: commits-help@juddi.apache.org