Add linter

This commit is contained in:
世界 2022-06-29 12:28:17 +08:00
parent 689e0165ef
commit ad926ed792
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
13 changed files with 119 additions and 23 deletions

View file

@ -80,7 +80,7 @@ func Key(password []byte, keySize int) []byte {
h := md5.New()
for len(b) < keySize {
h.Write(prev)
h.Write([]byte(password))
h.Write(password)
b = h.Sum(b)
prev = b[len(b)-h.Size():]
h.Reset()