first commit

This commit is contained in:
abcv7
2026-02-25 15:08:40 +08:00
commit 7f1d83ada7
2003 changed files with 144362 additions and 0 deletions
@@ -0,0 +1,17 @@
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);
}