Enable public key type guessing in encryption #1
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.
This is a follow-up on this comment.
In this PR, I try to guess the public key from its bytes but the heuristic I am using does not always work as expected (see test "allows encrypt/decrypt with sr25519 keypair and type guessing with convertible public key" below which will always fail because the sr25519 public key can actually be converted and will be considered as an ed25519 one).
In the sense that ed25519 and sr25519 are using the same curve, this is not completely unexpected but it is annoying nonetheless...