com.biuqu.encryption.Hash 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;
/**
* Hash接口
*
* @author BiuQu
* @date 2023/4/30 08:58
*/
public interface Hash
{
/**
* 摘要算法
*
* @param data 明文
* @return 摘要值
*/
byte[] digest(byte[] data);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy