|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.amazonaws.services.sns.util.SignatureChecker
public class SignatureChecker
Utility for validating signatures on a Simple Notification Service JSON message.
Constructor Summary | |
---|---|
SignatureChecker()
|
Method Summary | |
---|---|
protected String |
stringToSign(SortedMap<String,String> signables)
|
boolean |
verifyMessageSignature(String message,
PublicKey publicKey)
Validates the signature on a Simple Notification Service message. |
boolean |
verifySignature(Map<String,String> parsedMessage,
PublicKey publicKey)
Validates the signature on a Simple Notification Service message. |
boolean |
verifySignature(String message,
String signature,
PublicKey publicKey)
Does the actual Java cryptographic verification of the signature. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public SignatureChecker()
Method Detail |
---|
public boolean verifyMessageSignature(String message, PublicKey publicKey)
message
- A JSON-encoded Simple Notification Service message. Note: the
JSON may be only one level deep.publicKey
- The Simple Notification Service public key, exactly as you'd
see it when retrieved from the cert.
public boolean verifySignature(Map<String,String> parsedMessage, PublicKey publicKey)
parsedMessage
- A map of Simple Notification Service message.publicKey
- The Simple Notification Service public key, exactly as you'd
see it when retrieved from the cert.
public boolean verifySignature(String message, String signature, PublicKey publicKey)
message
- Exact string that was signed. In the case of the x-amz-sns-signature header the
signing string is the entire post bodysignature
- Base64-encoded signature of the message
protected String stringToSign(SortedMap<String,String> signables)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |