I have a requirement to consume a Restful API in Spring Java Application. Provider is expecting us to have SSL and Message Signing both. After researching a bit on Google, I understood the SSL authentication part, however, I did not get any pointers on how to start with Message Signing part in Restful?
In Message Signing, we have to first sign the request using our private key, Provider will unsign the same at their end using our public key.
Thanks.