图形验证码

This commit is contained in:
none
2023-02-15 16:54:03 +08:00
parent a9296cdfe2
commit 2813e98d9e
35 changed files with 2769 additions and 112 deletions

View File

@@ -0,0 +1,13 @@
package xyz.playedu.api.service;
import xyz.playedu.api.types.ImageCaptchaResult;
import java.io.IOException;
public interface ImageCaptchaService {
ImageCaptchaResult generate() throws IOException;
boolean verify(String key, String code);
}