Add error message if using password list in config #941
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Resolves #935.
The
"password"
field and--keys.passwords
CLI override fortessera
andtessera -keygen
commands have already been disabled. This change provides feedback to users providing details of the alternative methods of providing passwords.An empty password list (i.e.
"passwords": []
) is still allowed as no private password data is being provided in this case. This ensures existing configs such as those used in quorum examples are still supported.Config validation is now carried out before the
keyPasswordResolver
checks passwords and attempts to decrypt keys. This is so that invalid configs using"passwords": [...]
are caught early and do not result in the decryption of key data.