|
@@ -26,9 +26,9 @@ type auth struct{}
|
|
|
var driver = &base64Captcha.DriverString{
|
|
|
Height: 48,
|
|
|
Width: 130,
|
|
|
- NoiseCount: 100,
|
|
|
- ShowLineOptions: 2,
|
|
|
- Length: 5,
|
|
|
+ NoiseCount: 0,
|
|
|
+ ShowLineOptions: 0,
|
|
|
+ Length: 4,
|
|
|
BgColor: nil,
|
|
|
}
|
|
|
|
|
@@ -116,7 +116,7 @@ func (c *auth) Logout(ctx *gin.Context) {
|
|
|
|
|
|
func (c *auth) Captcha(ctx *gin.Context) {
|
|
|
id := uuid.NewV1().String()
|
|
|
- code := common.RandomString2(5)
|
|
|
+ code := common.RandomString2(4)
|
|
|
gotItem, _ := driver.DrawCaptcha(code)
|
|
|
image := gotItem.EncodeB64string()
|
|
|
rsp := model.RspCaptcha{
|