mojocn/base64Captcha

可以支持清除某张图片的功能吗?

qzq1111 opened this issue · 1 comments

如题

type Store interface {
	// Set sets the digits for the captcha id.
	Set(id string, value string) error

	// Get returns stored digits for the captcha id. Clear indicates
	// whether the captcha must be deleted from the store.
	Get(id string, clear bool) string

	//Verify captcha's answer directly
	Verify(id, answer string, clear bool) bool
}
`Get(id string, clear bool) string`   clear true就是清楚图片的值