com.biuqu.encryption.Encryption 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;
/**
* 最基础的加密接口
*
* @author BiuQu
* @date 2023/4/30 09:51
*/
public interface Encryption
{
/**
* 创建Key对象
*
* @param initKey 初始key
* @return 秘钥对象
*/
T createKey(byte[] initKey);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy