Elliptic Curve Signatures and How to Use Them in Your Java Application

Daniel
InfoSec Write-ups
Published in
6 min readDec 23, 2020

--

Let’s assume you want to send a message and you want to ensure that a) the receiver can detect whether or not the message was modified (integrity) and b) the receiver can verify that you’re the author of this message (message authentication). In that case you typically use digital signatures to digitally sign that message.

--

--