Examples of AES128Cryptor


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

        @Test
  public void testAES128Cryptor()
  {
            System.out.println("testAES128Cryptor");
    try {
      Cryptor auth = new AES128Cryptor();
                        String encrypt = auth.encrypt("test");
                        Assert.assertNotNull(encrypt);
                        Assert.assertNotSame(encrypt, "test");
                        String test=auth.decrypt(encrypt);
                        Assert.assertEquals(test, "test");
    } catch (Exception e) {
      logger.error(e.getMessage(),e);
      Assert.fail("unexpected");
    }
View Full Code Here

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

  {
                System.out.println("testDecryptFromConfigXML_InMemory");
    try {
                    Configuration config =AppConfig.getConfiguration();
                   
      Cryptor auth = new AES128Cryptor();
                        String encrypt = auth.encrypt("test");
                        Assert.assertNotNull(encrypt);
                        Assert.assertNotSame(encrypt, "test");
                       
                        //add to the config
                        config.addProperty("testDecryptFromConfigXML", encrypt);
                        config.addProperty("testDecryptFromConfigXML"+ Property.ENCRYPTED_ATTRIBUTE, "true");
                       
                        //retrieve it
                        String pwd = config.getString("testDecryptFromConfigXML");
                        Assert.assertNotNull(pwd);
                        //test for encryption
                        if (config.getBoolean("testDecryptFromConfigXML" + Property.ENCRYPTED_ATTRIBUTE, false))
                        {
                            String test=auth.decrypt(pwd);
                            Assert.assertEquals(test, "test");
                        }
                        else
                        {
                            Assert.fail("config reports that the setting is not encrypted");
View Full Code Here

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

                   
                    System.setProperty(AppConfig.JUDDI_CONFIGURATION_FILE_SYSTEM_PROPERTY, f.getAbsolutePath() +"/src/test/resources/juddiv3-enc-aes128.xml");
                    AppConfig.reloadConfig();
                    Configuration config =AppConfig.getConfiguration();
                   
      Cryptor auth = new AES128Cryptor();
                       
                        //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.