all repos — captcha @ e40250a1247fc6f98cb9d209ffe875af18f7d68c

Go package captcha implements generation and verification of image and audio CAPTCHAs.

cmd/audio/main.go (view raw)

 1package main
 2
 3import (
 4	"github.com/dchest/captcha"
 5	"os"
 6)
 7
 8func main() {
 9	c, _ := captcha.NewRandomAudio(captcha.StdLength)
10	c.WriteTo(os.Stdout)
11}