All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.predic8.membrane.core.interceptor.authentication.session.TOTPTokenProvider Maven / Gradle / Ivy

There is a newer version: 5.6.0
Show newest version
/* Copyright 2012 predic8 GmbH, www.predic8.com

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License. */
package com.predic8.membrane.core.interceptor.authentication.session;

import java.util.Map;
import java.util.NoSuchElementException;

import com.predic8.membrane.annot.MCElement;
import com.predic8.membrane.core.Router;
import com.predic8.membrane.core.interceptor.authentication.session.totp.OtpProvider;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * @description A token provider using the Time-based One-time Password (TOTP) algorithm specified in RFC 6238 to
 *              verify tokens using a pre-shared secret.
 * @explanation 

* The totpTokenProvider uses the Time-based One-time Password (TOTP) algorithm specified in RFC 6238 to verify tokens using a pre-shared secret. *

*

* The tokens consist of 6 digits. *

*

* The user's attribute secret is used as the pre-shared secret. If this attribute is missing, the * login attempt fails. *

*

* Note that the server's system time is taken into account when verifying tokens. *

*

* It is possible, for example, to use the Google * Authenticator App to store the pre-shared secret and generate such tokens. *

*/ @MCElement(name="totpTokenProvider", topLevel=false) public class TOTPTokenProvider implements TokenProvider { Logger log = LoggerFactory.getLogger(TOTPTokenProvider.class); @Override public void init(Router router) { // does nothing } @Override public void requestToken(Map userAttributes) { // does nothing } @Override public void verifyToken(Map userAttributes, String token) { OtpProvider otpp = new OtpProvider(); String secret; synchronized (userAttributes) { secret = userAttributes.get("secret"); } long curTime = System.currentTimeMillis(); if (!otpp.verifyCode(secret, curTime, token, 1)) { log.info("The given token was not equal to generated token.\nGenerated token: \"" + otpp.getNextCode(secret,curTime) + "\"\nGiven token: \"" + token + "\"\nUser: \"" + userAttributes.get("username")+ "\""); throw new NoSuchElementException("INVALID_TOKEN"); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy