本文整理汇总了Java中com.yubico.client.v2.YubicoClient.getPublicId方法的典型用法代码示例。如果您正苦于以下问题:Java YubicoClient.getPublicId方法的具体用法?Java YubicoClient.getPublicId怎么用?Java YubicoClient.getPublicId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.yubico.client.v2.YubicoClient
的用法示例。
在下文中一共展示了YubicoClient.getPublicId方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: authenticateUsernamePasswordInternal
import com.yubico.client.v2.YubicoClient; //导入方法依赖的package包/类
/**
* {@inheritDoc}
* Attempts to authenticate the received credentials using the Yubico cloud validation platform.
* In this implementation, the {@link UsernamePasswordCredential#getUsername()}
* is mapped to the {@code uid} which will be used by the plugged-in instance of the
* {@link YubiKeyAccountRegistry}
* and the {@link UsernamePasswordCredential#getPassword()} is the received
* one-time password token issued by the YubiKey device.
*/
@Override
protected HandlerResult authenticateUsernamePasswordInternal(final UsernamePasswordCredential transformedCredential)
throws GeneralSecurityException, PreventedException {
final String uid = transformedCredential.getUsername();
final String otp = transformedCredential.getPassword();
if (!YubicoClient.isValidOTPFormat(otp)) {
logger.debug("Invalid OTP format [{}]", otp);
throw new FailedLoginException("OTP format is invalid");
}
final String publicId = YubicoClient.getPublicId(otp);
if (this.registry != null
&&!this.registry.isYubiKeyRegisteredFor(uid, publicId)) {
logger.debug("YubiKey public id [{}] is not registered for user [{}]", publicId, uid);
throw new AccountNotFoundException("YubiKey id is not recognized in registry");
}
try {
final VerificationResponse response = this.client.verify(otp);
final ResponseStatus status = response.getStatus();
if (status.compareTo(ResponseStatus.OK) == 0) {
logger.debug("YubiKey response status {} at {}", status, response.getTimestamp());
return createHandlerResult(transformedCredential,
this.principalFactory.createPrincipal(uid), null);
}
throw new FailedLoginException("Authentication failed with status: " + status);
} catch (final YubicoVerificationException | YubicoValidationFailure e) {
logger.error(e.getMessage(), e);
throw new FailedLoginException("YubiKey validation failed: " + e.getMessage());
}
}
示例2: doAuthentication
import com.yubico.client.v2.YubicoClient; //导入方法依赖的package包/类
@Override
protected HandlerResult doAuthentication(final Credential credential) throws GeneralSecurityException, PreventedException {
final YubiKeyCredential yubiKeyCredential = (YubiKeyCredential) credential;
final String otp = yubiKeyCredential.getToken();
if (!YubicoClient.isValidOTPFormat(otp)) {
LOGGER.debug("Invalid OTP format [{}]", otp);
throw new AccountNotFoundException("OTP format is invalid");
}
final RequestContext context = RequestContextHolder.getRequestContext();
final String uid = WebUtils.getAuthentication(context).getPrincipal().getId();
final String publicId = YubicoClient.getPublicId(otp);
if (this.registry != null
&& !this.registry.isYubiKeyRegisteredFor(uid, publicId)) {
LOGGER.debug("YubiKey public id [{}] is not registered for user [{}]", publicId, uid);
throw new AccountNotFoundException("YubiKey id is not recognized in registry");
}
try {
final VerificationResponse response = this.client.verify(otp);
final ResponseStatus status = response.getStatus();
if (status.compareTo(ResponseStatus.OK) == 0) {
LOGGER.debug("YubiKey response status [{}] at [{}]", status, response.getTimestamp());
return createHandlerResult(yubiKeyCredential, this.principalFactory.createPrincipal(uid), null);
}
throw new FailedLoginException("Authentication failed with status: " + status);
} catch (final YubicoVerificationException | YubicoValidationFailure e) {
LOGGER.error(e.getMessage(), e);
throw new FailedLoginException("YubiKey validation failed: " + e.getMessage());
}
}