Package org.jboss.security.plugins

Examples of org.jboss.security.plugins.JaasSecurityDomain.decode64()


      public Object run() throws Exception
      {
         // Invoke the JaasSecurityDomain.decodeb64 operation
         InitialContext ctx = new InitialContext();
         JaasSecurityDomain securityDomain = (JaasSecurityDomain) ctx.lookup(jaasSecurityDomain);
         byte[] secret = securityDomain.decode64(password);
         // Convert to UTF-8 base char array
         String secretPassword = new String(secret, "UTF-8");
         return secretPassword.toCharArray();
      }
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.