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
验证码渲染器
-
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.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.numeric()Creates a numeric 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 TypeMethodDescriptionvoidOpenCaptcha.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) 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) SpecCaptchaGenerator.generate(CaptchaConfig config) -
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) 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 TypeMethodDescriptionvoidBase64CaptchaRenderer.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) Base64CaptchaRenderer.renderToBase64(Captcha captcha) CaptchaRenderer.renderToBase64(Captcha captcha) Renders the CAPTCHA to a Base64 string.GifCaptchaRenderer.renderToBase64(Captcha captcha) ImageCaptchaRenderer.renderToBase64(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)