mirror of
https://github.com/restic/restic.git
synced 2024-12-25 09:18:55 +00:00
Merge pull request #4852 from MichaelEischer/master
crypto: cleanup ciphertext verification error
This commit is contained in:
commit
112de8526d
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ const (
|
||||||
|
|
||||||
var (
|
var (
|
||||||
// ErrUnauthenticated is returned when ciphertext verification has failed.
|
// ErrUnauthenticated is returned when ciphertext verification has failed.
|
||||||
ErrUnauthenticated = errors.New("ciphertext verification failed")
|
ErrUnauthenticated = fmt.Errorf("ciphertext verification failed")
|
||||||
)
|
)
|
||||||
|
|
||||||
// Key holds encryption and message authentication keys for a repository. It is stored
|
// Key holds encryption and message authentication keys for a repository. It is stored
|
||||||
|
|
Loading…
Reference in a new issue