分享好友 最新资讯首页 最新资讯分类 切换频道
谷歌Google验证
2024-12-28 12:43
package com.qkwl.common.google;

谷歌Google验证



import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
import java.security.SecureRandom;


import javax.crypto.Mac;
import javax.crypto.spec.SecretKeySpec;


import org.apache.commons.codec.binary.Base32;
import org.apache.commons.codec.binary.Base64;



public class GoogleAuthenticator {


// taken from Google pam docs - we probably don't need to mess with these
public static final int SECRET_SIZE = 10;
public static final String SEED = "g8GjEvTbW5oVSV7avLBdwIHqGlUYNzKFI7izOF8GwLDVKs2m0QN7vxRs2im5MDaNCWGmcD2rvcZx";
public static final String RANDOM_NUMBER_ALGORITHM = "SHA1PRNG";


int window_size = 3; // default 3 - max 17 (from google docs)



public void setWindowSize(int s) {
if (s >= 1 && s <= 17)
window_size = s;
}



public static String generateSecretKey() {


SecureRandom sr = null;
try {
sr = SecureRandom.getInstance(RANDOM_NUMBER_ALGORITHM);
sr.setSeed(Base64.decodeBase64(SEED.getBytes()));
byte[] buffer = sr.generateSeed(SECRET_SIZE);
Base32 codec = new Base32();
byte[] bEncodedKey = codec.encode(buffer);
String encodedKey = new String(bEncodedKey);
return encodedKey;


} catch (NoSuchAlgorithmException e) {
// should never occur... configuration error
}
return null;
}



public static String getQRBarcodeURL(String user, String host, String secret) {
// String format =
// "https://www.google.com/chart?chs=200x200&chld=M%%7C0&cht=qr&chl=otpauth://totp/%s@%s%%3Fsecret%%3D%s";
String format = "otpauth://totp/%s--%s?secret=%s";
return String.format(format, user, host, secret);
}// otpauth://totp/OKCoin:sbicrgw@vip.qq.com?secret=LQQZJ6ITK5CKS6YA



public boolean check_code(String secret, long code, long timeMsec) {
Base32 codec = new Base32();
byte[] decodedKey = codec.decode(secret);


// convert unix msec time into a 30 second "window"
// this is per the TOTP spec (see the RFC for details)
long t = (timeMsec / 1000L) / 30L;
// Window is used to check codes generated in the near past.
// You can use this value to tune how far you're willing to go.


for (int i = -window_size; i <= window_size; ++i) {
long hash;
try {
hash = verify_code(decodedKey, t + i);
} catch (Exception e) {
// Yes, this is bad form - but
// the exceptions thrown would be rare and a static
// configuration problem
e.printStackTrace();
throw new RuntimeException(e.getMessage());
// return false;
}
if (hash == code) {
return true;
}
}
// The validation code is invalid.
return false;
}


private static int verify_code(byte[] key, long t) throws NoSuchAlgorithmException, InvalidKeyException {
byte[] data = new byte[8];
long value = t;
for (int i = 8; i-- > 0; value >>>= 8) {
data[i] = (byte) value;
}


SecretKeySpec signKey = new SecretKeySpec(key, "HmacSHA1");
Mac mac = Mac.getInstance("HmacSHA1");
mac.init(signKey);
byte[] hash = mac.doFinal(data);


int offset = hash[20 - 1] & 0xF;


// We're using a long because Java hasn't got unsigned int.
long truncatedHash = 0;
for (int i = 0; i < 4; ++i) {
truncatedHash <<= 8;
// We are dealing with signed bytes:
// we just keep the first byte.
truncatedHash |= (hash[offset + i] & 0xFF);
}


truncatedHash &= 0x7FFFFFFF;
truncatedHash %= 1000000;


return (int) truncatedHash;
}
最新文章
新澳管家婆资料2024年85期,来福解答解释落实_app64.49.40
新澳管家婆资料2024年85期解析:来福解答与数据落实在当今信息爆炸的时代,数据分析已经成为各行各业不可或缺的一部分,无论是金
南宁学院校徽校训和简介
高校是一个充满理想和梦想的高等学府,成为我们心之所往、情之所系、梦之所想的地方。本文介绍南宁学院简介和校徽校训南宁学院的
提供各行各业快手磁力智投广告平台直开套户合作推广
2018年12月05日李丹竹100今日头条巨量引擎,快-手磁力智投和磁力金牛,小红书,广点通,视频号等等信息流广告投流开户代运营,直
股债平衡型基金是什么呢
你好,股债平衡型基金是一种混合型基金。它的主要特点是在资产配置中,会平衡股票和债券的比例。如果您想了解更多关于股债平衡型
云扫描技术-洞察分析
29/33云扫描技术第一部分云扫描技术简介2第二部分云扫描技术的原理与分类6第三部分云扫描技术的应用领域10第四部分云扫描技术的
大模型 | 如何估计LLM推理和训练所需的GPU内存?
在实际工作中,经常有人问,7B、14B或70B的模型需要多大的显存才能推理?如果微调他们又需要多大的显存呢?为了回答这个问题整理
用Python对自己的文章做文本分析
新型冠状病毒疫情加剧,让人闲的不行。重新打开我的简书之后,发现我在简书上也写了72篇文章了……想“温故而知新”
管家婆一码一肖,收益成语分析落实_XT25.763
在现代企业管理中,数字化转型已成为一个不可忽视的趋势。随着技术的进步,越来越多的企业开始采用数字化工具来提高运营效率和优
报告:去年我国外卖员月均收入6803元,位居蓝领群体收入前三名
  “人在公园坐,外卖天上来”。在广东深圳市的深圳中心公园,只要位于公园两公里范围内,餐饮食品最快只需要10分钟,便能够通