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


Java YubicoValidationFailure类代码示例

本文整理汇总了Java中com.yubico.client.v2.exceptions.YubicoValidationFailure的典型用法代码示例。如果您正苦于以下问题:Java YubicoValidationFailure类的具体用法?Java YubicoValidationFailure怎么用?Java YubicoValidationFailure使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


YubicoValidationFailure类属于com.yubico.client.v2.exceptions包,在下文中一共展示了YubicoValidationFailure类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: authenticateUsernamePasswordInternal

import com.yubico.client.v2.exceptions.YubicoValidationFailure; //导入依赖的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());
    }
}
 
开发者ID:hsj-xiaokang,项目名称:springboot-shiro-cas-mybatis,代码行数:43,代码来源:YubiKeyAuthenticationHandler.java

示例2: doAuthentication

import com.yubico.client.v2.exceptions.YubicoValidationFailure; //导入依赖的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());
    }
}
 
开发者ID:mrluo735,项目名称:cas-5.1.0,代码行数:34,代码来源:YubiKeyAuthenticationHandler.java

示例3: error

import com.yubico.client.v2.exceptions.YubicoValidationFailure; //导入依赖的package包/类
static YubiVerifyResponse error(YubicoValidationFailure errorCause) {
	return builder().verifyStatus(VerifyStatus.VALIDATION_ERROR).errorCause(errorCause).build();
}
 
开发者ID:BlueWizardHat,项目名称:2fa-demo,代码行数:4,代码来源:YubiVerifyResponse.java

示例4: verifyYubicoOTP

import com.yubico.client.v2.exceptions.YubicoValidationFailure; //导入依赖的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();
}
 
开发者ID:NeilRen,项目名称:NEILREN4J,代码行数:13,代码来源:OTP.java


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