2
2
mirror of https://github.com/octoleo/restic.git synced 2025-01-23 07:08:28 +00:00

12 lines
477 B
Plaintext
Raw Normal View History

2022-05-30 15:54:32 +08:00
Bugfix: Limit number of key files tested while opening a repository
2022-08-24 01:21:01 +02:00
Previously, restic tested the password against every key in the repository
when opening a repository. The more keys there were in the repository, the
slower this operation became.
2022-05-30 15:54:32 +08:00
2022-08-24 01:21:01 +02:00
Restic now tests the password against up to 20 key files in the repository.
Alternatively, you can use the `--key-hint=<key ID>` option to specify a
specific key file to use instead.
2022-05-30 15:54:32 +08:00
https://github.com/restic/restic/pull/3776