com.biuqu.encryption.KeyHash Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bq-encryptor Show documentation
Show all versions of bq-encryptor Show documentation
easy use for mostly encryption
The newest version!
package com.biuqu.encryption;
/**
* 使用key的hash算法
*
* @author BiuQu
* @date 2023/4/30 09:00
*/
public interface KeyHash
{
/**
* 摘要算法
*
* @param data 明文
* @param key hash的key
* @return 摘要值
*/
byte[] digest(byte[] data, byte[] key);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy