You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public_key:sign/3 should return the same value on all versions. The result on OTP 24 is the correct one (checked against OpenSSL ssh-keygen signing functionality).
Affected versions
OTP 25
The text was updated successfully, but these errors were encountered:
A "funny" thing is that in OTP-24 it seems as it does not matter if one writes public_key:sign(Body, sha512, Key) or public_key:sign(Body, none, Key) with ed25519 as you use.
In OTP-25 it matters. I get the same as in OTP-24 if I call public_key:sign(Body, none, Key) in OTP-25.
We are right now investigating why and also how it should be.
Describe the bug
Different signature returned on different Erlang versions.
To Reproduce
OTP 24:
OTP 25:
Expected behavior
public_key:sign/3
should return the same value on all versions. The result on OTP 24 is the correct one (checked against OpenSSLssh-keygen
signing functionality).Affected versions
The text was updated successfully, but these errors were encountered: