当前位置: 首页>>代码示例>>Java>>正文


Java PasswordCallback.getPassword方法代码示例

本文整理汇总了Java中javax.security.auth.callback.PasswordCallback.getPassword方法的典型用法代码示例。如果您正苦于以下问题:Java PasswordCallback.getPassword方法的具体用法?Java PasswordCallback.getPassword怎么用?Java PasswordCallback.getPassword使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在javax.security.auth.callback.PasswordCallback的用法示例。


在下文中一共展示了PasswordCallback.getPassword方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: openSession

import javax.security.auth.callback.PasswordCallback; //导入方法依赖的package包/类
@Override
public ExchangeSession openSession(ExchangeLogin login) {
    ApiKeyCallback apiKey = new ApiKeyCallback();
    ApiSecretCallback apiSecret = new ApiSecretCallback();
    PasswordCallback password = new PasswordCallback("GDAX passphrase", false);

    Callback[] callbacks = new Callback[]{
            apiKey,
            apiSecret,
            password
    };
    CallbackHandler callbackHandler = login.getCallbackHandler();
    try {
        callbackHandler.handle(callbacks);
    } catch (IOException | UnsupportedCallbackException e) {
        throw new RuntimeException(e);
    }

    String apiKeyTxt = apiKey.getApiKey();
    char[] passphrase = password.getPassword();
    SecretKeySpec keySpec = new SecretKeySpec(apiSecret.getSecretData(), "HmacSHA256");
    return new GdaxExchangeSession(this, apiKeyTxt, keySpec, passphrase);
}
 
开发者ID:cloudwall,项目名称:libcwfincore,代码行数:24,代码来源:GdaxExchangeConnection.java

示例2: charArrayToByteArray

import javax.security.auth.callback.PasswordCallback; //导入方法依赖的package包/类
private static byte[] charArrayToByteArray(final PasswordCallback pinPc) {
 	if (pinPc == null) {
 		throw new IllegalArgumentException(
	"El PasswordCallback del PIN no puede ser nulo" //$NON-NLS-1$
);
 	}
 	final char[] in = pinPc.getPassword();
 	if (in == null) {
 		return new byte[0];
 	}
 	final byte[] ret = new byte[in.length];
 	for (int i=0; i<in.length; i++) {
 		ret[i] = (byte) in[i];
 	}
 	return ret;
 }
 
开发者ID:MiFirma,项目名称:mi-firma-android,代码行数:17,代码来源:CeresVerifyApduCommand.java

示例3: login

import javax.security.auth.callback.PasswordCallback; //导入方法依赖的package包/类
@Override
public boolean login() throws LoginException {
    if (debug) {
        logger.debug(this.getClass().getName() + " login called.");
    }

    if (Constants.FEDORA_HOME == null || "".equals(Constants.FEDORA_HOME.trim())) {
        logger.error("FEDORA_HOME constant is not set");
        return false;
    }

    final NameCallback nc = new NameCallback("username");
    final PasswordCallback pc = new PasswordCallback("password", false);
    final Callback[] callbacks = new Callback[] {
            nc, pc
    };

    try {
        handler.handle(callbacks);
    } catch (IOException ioe) {
        ioe.printStackTrace();
        throw new LoginException("IOException occured: " + ioe.getMessage());
    } catch (UnsupportedCallbackException ucbe) {
        ucbe.printStackTrace();
        throw new LoginException("UnsupportedCallbackException encountered: "
                + ucbe.getMessage());
    }

    // Grab the username and password from the callbacks.
    final String username = nc.getName();
    final String password = new String(pc.getPassword());

    successLogin = authenticate(username, password);

    return successLogin;
}
 
开发者ID:discoverygarden,项目名称:fcrepo3-security-jaas,代码行数:37,代码来源:XmlUsersFileModule.java

示例4: login

import javax.security.auth.callback.PasswordCallback; //导入方法依赖的package包/类
@Override
public boolean login() throws LoginException {
    NameCallback userNameCallback = new NameCallback("userName");
    PasswordCallback passwordCallback = new PasswordCallback("password", false);
    Callback[] callbacks = { userNameCallback, passwordCallback };
    try {
        callbackHandler.handle(callbacks);
    } catch (IOException | UnsupportedCallbackException e) {
        throw new BrokerAuthenticationException("Error while handling callback ", e);
    }
    String userName = userNameCallback.getName();
    char[] password = passwordCallback.getPassword();
    return userName.equals("user") && Arrays.equals(password, new char[] { 'p', 'a', 's', 's' });
}
 
开发者ID:wso2,项目名称:message-broker,代码行数:15,代码来源:TestLoginModule.java

示例5: getUsernameAndPassword

import javax.security.auth.callback.PasswordCallback; //导入方法依赖的package包/类
/**
    * Called by login() to acquire the username and password strings for authentication. This method does no validation
    * of either.
    *
    * @return String[], [0] = username, [1] = password
    */
   private String[] getUsernameAndPassword() throws LoginException {
if (callbackHandler == null) {
    throw new LoginException("No CallbackHandler available to collect authentication information");
}
NameCallback nc = new NameCallback("User name: ", "guest");
PasswordCallback pc = new PasswordCallback("Password: ", false);
Callback[] callbacks = { nc, pc };
String username = null;
String password = null;
try {
    callbackHandler.handle(callbacks);
    username = nc.getName();
    char[] tmpPassword = pc.getPassword();
    if (tmpPassword != null) {
	credential = new char[tmpPassword.length];
	System.arraycopy(tmpPassword, 0, credential, 0, tmpPassword.length);
	pc.clearPassword();
	password = new String(credential);
    }
} catch (IOException ioe) {
    throw new LoginException(ioe.toString());
} catch (UnsupportedCallbackException uce) {
    throw new LoginException("CallbackHandler does not support: " + uce.getCallback());
}
return new String[] { username, password };
   }
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:33,代码来源:UniversalLoginModule.java

示例6: saveStorePass

import javax.security.auth.callback.PasswordCallback; //导入方法依赖的package包/类
private void saveStorePass(PasswordCallback c) {
    keyStorePassword = c.getPassword();
    if (keyStorePassword == null) {
        /* Treat a NULL password as an empty password */
        keyStorePassword = new char[0];
    }
    c.clearPassword();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:9,代码来源:KeyStoreLoginModule.java

示例7: saveKeyPass

import javax.security.auth.callback.PasswordCallback; //导入方法依赖的package包/类
private void saveKeyPass(PasswordCallback c) {
    privateKeyPassword = c.getPassword();
    if (privateKeyPassword == null || privateKeyPassword.length == 0) {
        /*
         * Use keystore password if no private key password is
         * specified.
         */
        privateKeyPassword = keyStorePassword;
    }
    c.clearPassword();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:12,代码来源:KeyStoreLoginModule.java

示例8: login

import javax.security.auth.callback.PasswordCallback; //导入方法依赖的package包/类
@Override
public boolean login() throws LoginException {
    if (debug) {
        logger.debug(String.format("%s login called.", DrupalMultisiteAuthModule.class.getName()));
        for (String key : sharedState.keySet()) {
            String value = sharedState.get(key).toString();
            logger.debug(key + ": " + value);
        }
    }

    String[] keys = config.keySet().toArray(new String[0]);
    NameCallback nc = new NameCallback("username");
    PasswordCallback pc = new PasswordCallback("password", false);
    KeyChoiceCallback kcc = new KeyChoiceCallback(keys);
    Callback[] callbacks = new Callback[] {
            nc, pc, kcc
    };

    try {
        handler.handle(callbacks);
        username = nc.getName();
        char[] passwordCharArray = pc.getPassword();
        String password = new String(passwordCharArray);
        int[] key_selections = kcc.getSelectedIndexes();

        // Should only be exactly one item in key_selections; however,
        // let's iterate for brevity.
        for (int i : key_selections) {
            findUser(username, password, keys[i]);
        }

    }
    catch (IOException ioe) {
        ioe.printStackTrace();
        throw new LoginException("IOException occured: " + ioe.getMessage());
    }
    catch (MissingCredsException mce) {
        throw new CredentialNotFoundException(
                String.format("Missing \"key\", required for module %s.", this.getClass().getName()));
    }
    catch (UnsupportedCallbackException ucbe) {
        throw new LoginException("UnsupportedCallbackException: " + ucbe.getMessage());
    }

    return successLogin;
}
 
开发者ID:discoverygarden,项目名称:fcrepo3-security-jaas,代码行数:47,代码来源:DrupalMultisiteAuthModule.java


注:本文中的javax.security.auth.callback.PasswordCallback.getPassword方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。