mirror of
https://gogs.blitter.com/RLabs/xs
synced 2024-08-14 10:26:42 +00:00
Added vendor/ dir to remove dependencies on gopkg.in (down Aug 12 2022)
This commit is contained in:
parent
f24d4d8fdb
commit
7a4560762d
913 changed files with 317350 additions and 0 deletions
15
vendor/gopkg.in/hlandau/passlib.v1/abstract/errors.go
generated
vendored
Normal file
15
vendor/gopkg.in/hlandau/passlib.v1/abstract/errors.go
generated
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
// Package abstract contains the abstract description of the Scheme interface,
|
||||
// plus supporting error definitions.
|
||||
package abstract
|
||||
|
||||
import "fmt"
|
||||
|
||||
// Indicates that password verification failed because the provided password
|
||||
// does not match the provided hash.
|
||||
var ErrInvalidPassword = fmt.Errorf("invalid password")
|
||||
|
||||
// Indicates that password verification is not possible because the hashing
|
||||
// scheme used by the hash provided is not supported.
|
||||
var ErrUnsupportedScheme = fmt.Errorf("unsupported scheme")
|
||||
|
||||
// © 2014 Hugo Landau <hlandau@devever.net> MIT License
|
Loading…
Add table
Add a link
Reference in a new issue