本文整理汇总了Java中com.yubico.client.v2.exceptions.YubicoVerificationException类的典型用法代码示例。如果您正苦于以下问题:Java YubicoVerificationException类的具体用法?Java YubicoVerificationException怎么用?Java YubicoVerificationException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
YubicoVerificationException类属于com.yubico.client.v2.exceptions包,在下文中一共展示了YubicoVerificationException类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: authenticateUsernamePasswordInternal
import com.yubico.client.v2.exceptions.YubicoVerificationException; //导入依赖的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.exceptions.YubicoVerificationException; //导入依赖的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());
}
}
示例3: error
import com.yubico.client.v2.exceptions.YubicoVerificationException; //导入依赖的package包/类
static YubiVerifyResponse error(YubicoVerificationException errorCause) {
return builder().verifyStatus(VerifyStatus.ERROR).errorCause(errorCause).build();
}
示例4: verifyYubicoOTP
import com.yubico.client.v2.exceptions.YubicoVerificationException; //导入依赖的package包/类
/**
* 验证OTP正确性
*
* @param otp
* @return
* @throws YubicoVerificationException
* @throws YubicoValidationFailure
*/
public boolean verifyYubicoOTP(String otp) throws YubicoVerificationException, YubicoValidationFailure {
VerificationResponse response = yubicoClient.verify(otp);
return response.isOk();
}