-1

In an encrypted POST request to a web service, I see two important parameters: hmac and ciphertext. Using these, I want to decrypt the ciphertext. How can I do that? Thanks.

Darth.Vader
  • 5,079
  • 7
  • 50
  • 90

1 Answers1

1

You cannot decrypt the ciphertext without the encryption key (unless the crypto is broken, but the fact that there is also a HMAC leads me to believe it probably isn't).

Maarten Bodewes
  • 90,524
  • 13
  • 150
  • 263