
com.hc360.hcpay.payment.sign.SignAndVerify Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payment-util Show documentation
Show all versions of payment-util Show documentation
hcpay payment-util java sdk
The newest version!
/**
* Copyright(c) 2000-2013 HC360.COM, All Rights Reserved.
* Project: hfb-paydemo
* Author: chenlf
* Createdate: 2:13:14 PM
* Version: 1.0
*
*/
package com.hc360.hcpay.payment.sign;
/**
*
* @project hfb-paydemo
* @author chenlf
* @version 1.0
* @date Jan 21, 2015 2:13:14 PM
*/
public interface SignAndVerify {
/**
* ǩ???ַ???
* @param text ??Ҫǩ?????ַ???
* @param key ??Կ
* @param input_charset ?????ʽ
* @return ǩ?????
*/
public String sign(String text, String key, String input_charset);
/**
* ǩ???ַ???
* @param text ??Ҫǩ?????ַ???
* @param sign ǩ?????
* @param key ??Կ
* @param input_charset ?????ʽ
* @return ǩ?????
*/
public boolean verify(String text, String sign, String key, String input_charset);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy