Closed vanitasvitae closed 2 months ago
Fixes #1780
Using update(salt) instead of sigOut.write(salt) caused some preprocessing on the salt value in some cases (Cleartext Signature Framework line endings), which resulted in broken signature verification.
update(salt)
sigOut.write(salt)
Fixes #1780
Using
update(salt)
instead ofsigOut.write(salt)
caused some preprocessing on the salt value in some cases (Cleartext Signature Framework line endings), which resulted in broken signature verification.