Uses of Record Class
cloud.opencode.base.captcha.Captcha
Packages that use Captcha
Package
Description
OpenCode Base Captcha - Zero-dependency CAPTCHA generation library
OpenCode Base 验证码 - 零依赖验证码生成库
CAPTCHA Generators
验证码生成器
Interactive CAPTCHA Generators
交互式验证码生成器
CAPTCHA Renderers
验证码渲染器
CAPTCHA Support Utilities
验证码支持工具
-
Uses of Captcha in cloud.opencode.base.captcha
Methods in cloud.opencode.base.captcha that return CaptchaModifier and TypeMethodDescriptionstatic CaptchaOpenCaptcha.alpha()Creates an alphabetic CAPTCHA.static CaptchaOpenCaptcha.alphanumeric()Creates an alphanumeric CAPTCHA.static CaptchaOpenCaptcha.arithmetic()Creates an arithmetic CAPTCHA.static CaptchaOpenCaptcha.audio()Creates an audio CAPTCHA.static CaptchaOpenCaptcha.chinese()Creates a Chinese CAPTCHA.static CaptchaOpenCaptcha.click()Creates a click CAPTCHA.static CaptchaOpenCaptcha.create()Creates a CAPTCHA with default configuration.static CaptchaOpenCaptcha.create(CaptchaConfig config) Creates a CAPTCHA with the specified configuration.static CaptchaOpenCaptcha.create(CaptchaType type) Creates a CAPTCHA of the specified type.OpenCaptcha.generate()Generates a CAPTCHA and stores it.OpenCaptcha.generate(CaptchaConfig config) Generates a CAPTCHA with configuration and stores it.static CaptchaOpenCaptcha.gif()Creates a GIF CAPTCHA.static CaptchaOpenCaptcha.jigsaw()Creates a jigsaw CAPTCHA.static CaptchaOpenCaptcha.numeric()Creates a numeric CAPTCHA.static CaptchaOpenCaptcha.pow()Creates a PoW CAPTCHA.static CaptchaOpenCaptcha.rotate()Creates a rotate CAPTCHA.static CaptchaOpenCaptcha.slider()Creates a slider CAPTCHA.Methods in cloud.opencode.base.captcha with parameters of type CaptchaModifier and TypeMethodDescriptionvoidCaptchaEventDispatcher.onGenerated(Captcha captcha) Dispatches a generation event to all registered listeners.default voidCaptchaEventListener.onGenerated(Captcha captcha) Called when a CAPTCHA is generated.voidOpenCaptcha.render(Captcha captcha, OutputStream out) Renders a CAPTCHA to an output stream. -
Uses of Captcha in cloud.opencode.base.captcha.generator
Methods in cloud.opencode.base.captcha.generator that return CaptchaModifier and TypeMethodDescriptionprotected CaptchaAbstractCaptchaGenerator.buildCaptcha(CaptchaType type, byte[] imageData, String answer, CaptchaConfig config) Builds a CAPTCHA from generated data.ArithmeticCaptchaGenerator.generate(CaptchaConfig config) AudioCaptchaGenerator.generate(CaptchaConfig config) default CaptchaCaptchaGenerator.generate()Generates a CAPTCHA with default configuration.CaptchaGenerator.generate(CaptchaConfig config) Generates a CAPTCHA with the specified configuration.ChineseCaptchaGenerator.generate(CaptchaConfig config) GifCaptchaGenerator.generate(CaptchaConfig config) ImageCaptchaGenerator.generate(CaptchaConfig config) PowCaptchaGenerator.generate(CaptchaConfig config) Generates a PoW CAPTCHA challenge.SpecCaptchaGenerator.generate(CaptchaConfig config) TestCaptchaGenerator.generate(CaptchaConfig config) Generates a CAPTCHA with the fixed answer and minimal image data. -
Uses of Captcha in cloud.opencode.base.captcha.interactive
Methods in cloud.opencode.base.captcha.interactive that return CaptchaModifier and TypeMethodDescriptionClickCaptchaGenerator.generate(CaptchaConfig config) ImageSelectCaptchaGenerator.generate(CaptchaConfig config) JigsawCaptchaGenerator.generate(CaptchaConfig config) RotateCaptchaGenerator.generate(CaptchaConfig config) SliderCaptchaGenerator.generate(CaptchaConfig config) -
Uses of Captcha in cloud.opencode.base.captcha.renderer
Methods in cloud.opencode.base.captcha.renderer with parameters of type CaptchaModifier and TypeMethodDescriptionvoidAudioCaptchaRenderer.render(Captcha captcha, OutputStream out) voidBase64CaptchaRenderer.render(Captcha captcha, OutputStream out) voidCaptchaRenderer.render(Captcha captcha, OutputStream out) Renders the CAPTCHA to an output stream.voidGifCaptchaRenderer.render(Captcha captcha, OutputStream out) voidImageCaptchaRenderer.render(Captcha captcha, OutputStream out) AudioCaptchaRenderer.renderToBase64(Captcha captcha) Base64CaptchaRenderer.renderToBase64(Captcha captcha) CaptchaRenderer.renderToBase64(Captcha captcha) Renders the CAPTCHA to a Base64 string.GifCaptchaRenderer.renderToBase64(Captcha captcha) ImageCaptchaRenderer.renderToBase64(Captcha captcha) byte[]AudioCaptchaRenderer.renderToBytes(Captcha captcha) byte[]Base64CaptchaRenderer.renderToBytes(Captcha captcha) byte[]CaptchaRenderer.renderToBytes(Captcha captcha) Renders the CAPTCHA to a byte array.byte[]GifCaptchaRenderer.renderToBytes(Captcha captcha) byte[]ImageCaptchaRenderer.renderToBytes(Captcha captcha) -
Uses of Captcha in cloud.opencode.base.captcha.support
Methods in cloud.opencode.base.captcha.support that return Captcha