cn.luues.tool.crypto.digest.mac.MacEngine Maven / Gradle / Ivy
package cn.luues.tool.crypto.digest.mac;
import cn.luues.tool.core.io.IoUtil;
import java.io.InputStream;
/**
* MAC(Message Authentication Code)算法引擎
*
* @author Looly
* @since 4.5.13
*/
public interface MacEngine {
/**
* 生成摘要
*
* @param data {@link InputStream} 数据流
* @param bufferLength 缓存长度,不足1使用 {@link IoUtil#DEFAULT_BUFFER_SIZE} 做为默认值
* @return 摘要bytes
*/
byte[] digest(InputStream data, int bufferLength);
/**
* 获取MAC算法块大小
*
* @return MAC算法块大小
*/
int getMacLength();
/**
* 获取当前算法
*
* @return 算法
*/
String getAlgorithm();
}