Examples of AES256Cryptor


Examples of org.apache.juddi.v3.client.cryptor.AES256Cryptor

        @Test
  public void testAES256Cryptor()
  {
                System.out.println("testAES256Cryptor");
    try {
      Cryptor auth = new AES256Cryptor();
                        String encrypt = auth.encrypt("test");
                        Assert.assertNotNull(encrypt);
                        Assert.assertNotSame(encrypt, "test");
                        String test=auth.decrypt(encrypt);
                        Assert.assertEquals(test, "test");
                }
                catch (InvalidKeyException e)
                {
                    logger.error("Hey, you're probably using the Oracle JRE without the Unlimited Strength Java Crypto Extensions installed. AES256 won't work until you download and install it", e);
View Full Code Here

Examples of org.apache.juddi.v3.client.cryptor.AES256Cryptor

                    System.out.println("Current working dir is " + f.getAbsolutePath());
                    System.setProperty(AppConfig.JUDDI_CONFIGURATION_FILE_SYSTEM_PROPERTY, f.getAbsolutePath() + "/src/test/resources/juddiv3-enc-aes256.xml");
                    AppConfig.reloadConfig();
                    Configuration config =AppConfig.getConfiguration();
                   
      Cryptor auth = new AES256Cryptor();
                       
                        //retrieve it
                        String pwd = config.getString("juddi.mail.smtp.password");
                        Assert.assertNotNull(pwd);
                        //test for encryption
                        if (config.getBoolean("juddi.mail.smtp.password" + Property.ENCRYPTED_ATTRIBUTE, false))
                        {
                            String test=auth.decrypt(pwd);
                            Assert.assertEquals(test, "password");
                        }
                        else
                        {
                            Assert.fail("config reports that the setting is not encrypted");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.