mirror of
https://github.com/abcv7/sfbx-cloud.git
synced 2026-08-16 11:47:00 +00:00
18 lines
353 B
Java
18 lines
353 B
Java
package com.itheima.sfbx;
|
|
|
|
import cn.hutool.crypto.SecureUtil;
|
|
import cn.hutool.crypto.asymmetric.Sign;
|
|
import cn.hutool.crypto.asymmetric.SignAlgorithm;
|
|
import org.apache.commons.codec.binary.Base64;
|
|
|
|
/**
|
|
* @ClassName Verifier.java
|
|
* @Description 验签解密者
|
|
*/
|
|
public interface Verifier {
|
|
|
|
boolean verify(byte[] data,byte[] signature);
|
|
|
|
|
|
}
|