Uses of Interface
cloud.opencode.base.captcha.store.CaptchaStore
Packages that use CaptchaStore
Package
Description
OpenCode Base Captcha - Zero-dependency CAPTCHA generation library
OpenCode Base 验证码 - 零依赖验证码生成库
CAPTCHA Storage
验证码存储
CAPTCHA Validators
验证码验证器
-
Uses of CaptchaStore in cloud.opencode.base.captcha
Methods in cloud.opencode.base.captcha that return CaptchaStoreMethods in cloud.opencode.base.captcha with parameters of type CaptchaStoreModifier and TypeMethodDescriptionOpenCaptcha.Builder.store(CaptchaStore store) Sets the CAPTCHA store. -
Uses of CaptchaStore in cloud.opencode.base.captcha.store
Classes in cloud.opencode.base.captcha.store that implement CaptchaStoreModifier and TypeClassDescriptionfinal classHashed Captcha Store - Decorator that hashes answers before storage 哈希验证码存储 - 在存储前对答案进行哈希处理的装饰器final classMemory Captcha Store - In-memory CAPTCHA storage 内存验证码存储 - 内存中的验证码存储final classRedis Captcha Store - Redis-based CAPTCHA storage Redis验证码存储 - 基于Redis的验证码存储Methods in cloud.opencode.base.captcha.store that return CaptchaStoreModifier and TypeMethodDescriptionstatic CaptchaStoreCaptchaStore.memory()Creates a memory-based store.static CaptchaStoreCaptchaStore.memory(int maxSize) Creates a memory-based store with max size.Methods in cloud.opencode.base.captcha.store with parameters of type CaptchaStoreModifier and TypeMethodDescriptionstatic HashedCaptchaStoreCaptchaStore.hashed(CaptchaStore delegate) Wraps a store with answer hashing for defense in depth.static HashedCaptchaStoreHashedCaptchaStore.wrap(CaptchaStore delegate) Wraps aCaptchaStorewith hashing (case-insensitive).static HashedCaptchaStoreHashedCaptchaStore.wrap(CaptchaStore delegate, boolean caseSensitive) Wraps aCaptchaStorewith hashing and configurable case sensitivity. -
Uses of CaptchaStore in cloud.opencode.base.captcha.validator
Methods in cloud.opencode.base.captcha.validator with parameters of type CaptchaStoreModifier and TypeMethodDescriptionstatic PowCaptchaValidatorPowCaptchaValidator.create(CaptchaStore store) Creates a new PoW validator with the specified store.static CaptchaValidatorCaptchaValidator.pow(CaptchaStore store) Creates a Proof-of-Work validator.static CaptchaValidatorCaptchaValidator.simple(CaptchaStore store) Creates a simple validator.static CaptchaValidatorCaptchaValidator.timeBased(CaptchaStore store) Creates a time-based validator with behavior checking.Constructors in cloud.opencode.base.captcha.validator with parameters of type CaptchaStoreModifierConstructorDescriptionCreates a new behavior validator with the specified store.BehaviorCaptchaValidator(CaptchaStore store, BehaviorAnalyzer analyzer) Creates a new behavior validator with custom analyzer.PowCaptchaValidator(CaptchaStore store) Creates a new PoW validator with the specified store.Creates a new validator with the specified store.Creates a new validator with the specified store.