2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-28 22:50:48 +00:00

Handle invalid key file

This commit is contained in:
Alexander Neumann 2017-09-10 10:55:01 +02:00
parent 6f8eba9c28
commit 36e70228f2
2 changed files with 7 additions and 4 deletions

View File

@ -319,7 +319,7 @@ func OpenRepository(opts GlobalOptions) (*repository.Repository, error) {
err = s.SearchKey(context.TODO(), opts.password, maxKeys)
if err != nil {
return nil, errors.Fatalf("unable to open repo: %v", err)
return nil, err
}
return s, nil

View File

@ -19,10 +19,10 @@ import (
var (
// ErrNoKeyFound is returned when no key for the repository could be decrypted.
ErrNoKeyFound = errors.New("wrong password or no key found")
ErrNoKeyFound = errors.Fatal("wrong password or no key found")
// ErrMaxKeysReached is returned when the maximum number of keys was checked and no key could be found.
ErrMaxKeysReached = errors.New("maximum number of keys reached")
ErrMaxKeysReached = errors.Fatal("maximum number of keys reached")
)
// Key represents an encrypted master key for a repository.
@ -133,7 +133,10 @@ func SearchKey(ctx context.Context, s *Repository, password string, maxKeys int)
continue
}
return nil, err
if err != nil {
debug.Log("unable to open key %v: %v\n", err)
continue
}
}
debug.Log("successfully opened key %v", name[:12])