Package com.cloud.server.auth

Examples of com.cloud.server.auth.SHA256SaltedUserAuthenticator.configure()


  public void testEncode() throws UnsupportedEncodingException, NoSuchAlgorithmException {
    SHA256SaltedUserAuthenticator authenticator =
        new SHA256SaltedUserAuthenticator();

    try {
      authenticator.configure("SHA256", Collections.<String,Object>emptyMap());
    } catch (ConfigurationException e) {
      fail(e.toString());
    }
   
    String encodedPassword = authenticator.encode("password");
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.