com.fizzgate.dedicated_line.DedicatedLineUtils Maven / Gradle / Ivy
/*
* Copyright (C) 2020 the original author or authors.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package com.fizzgate.dedicated_line;
import com.fizzgate.util.Consts;
import com.fizzgate.util.ThreadContext;
/**
* @author hongqiaowei
*/
public abstract class DedicatedLineUtils extends org.apache.commons.codec.digest.DigestUtils {
private DedicatedLineUtils() {
}
public static String sign(String pairCodeId, String timestamp, String secretKey) {
StringBuilder b = ThreadContext.getStringBuilder(ThreadContext.sb0);
b.append(pairCodeId).append(Consts.S.UNDER_LINE)
.append(timestamp) .append(Consts.S.UNDER_LINE)
.append(secretKey);
return sha256Hex(b.toString());
}
public static String sign(String pairCodeId, long timestamp, String secretKey) {
return sign(pairCodeId, String.valueOf(timestamp), secretKey);
}
public static boolean checkSign(String pairCodeId, String timestamp, String secretKey, String sign) {
String s = sign(pairCodeId, timestamp, secretKey);
return s.equals(sign);
}
public static boolean checkSign(String pairCodeId, long timestamp, String secretKey, String sign) {
return checkSign(pairCodeId, String.valueOf(timestamp), secretKey, sign);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy