that was dumb
This commit is contained in:
parent
2eb3fb4828
commit
0ef669352f
|
@ -4,7 +4,6 @@ import (
|
|||
"crypto/subtle"
|
||||
"errors"
|
||||
"fmt"
|
||||
"log"
|
||||
"time"
|
||||
|
||||
"github.com/oklog/ulid/v2"
|
||||
|
@ -33,8 +32,7 @@ type Login struct {
|
|||
}
|
||||
|
||||
func derive(password string, salt []byte) ([]byte, error) {
|
||||
fmt.Println("deriving")
|
||||
return scrypt.Key([]byte(password), salt, scryptN, scryptR, scryptN, 32)
|
||||
return scrypt.Key([]byte(password), salt, scryptN, scryptR, scryptP, 30)
|
||||
}
|
||||
|
||||
func (u *User) Check(login *Login) bool {
|
||||
|
@ -75,7 +73,6 @@ func (u *User) Register(login *Login) error {
|
|||
if err != nil {
|
||||
return fmt.Errorf("key derivation failed: %w", err)
|
||||
}
|
||||
log.Println("underived")
|
||||
|
||||
u.Created = time.Now().Unix()
|
||||
return nil
|
||||
|
|
Loading…
Reference in New Issue