Menu

Constructing Messages Using HTTP Signature Security

HTTP signatures use a digital signature to enable the receiver to validate the sender's authenticity and ensure that the message was not tampered with during transit. For more information on HTTP signatures, see the IETF Draft: HTTP Message Signatures.
Follow these steps to implement HTTP signatures:
  1. Create a shared secret key pair.
  2. Generate a hash of the message body.
  3. Generate a signature hash.
  4. Populate the
    signature
    header field.
Back to top