goshort/internal/util/passwords/errors.go
2023-08-21 22:39:33 -03:00

11 lines
206 B
Go

package passwords
import (
"errors"
)
var (
ErrInvalidHash = errors.New("the encoded hash is not in the correct format")
ErrIncompatibleVersion = errors.New("incompatible version of hasher")
)