All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.biuqu.encryptor.SignEncryptor Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.biuqu.encryptor;

/**
 * 支持加解密和签名验签的加密器
 *
 * @author BiuQu
 * @date 2023/5/3 00:20
 */
public interface SignEncryptor extends EncryptEncryptor
{
    /**
     * 签名
     *
     * @param data 原始数据
     * @return 签名二进制
     */
    byte[] sign(byte[] data);

    /**
     * 验证签名
     *
     * @param data      数据
     * @param signature 签名值
     * @return true表示成功
     */
    boolean verify(byte[] data, byte[] signature);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy