1.0.7 • Published 11 years ago

signed-request v1.0.7

Weekly downloads
31
License
-
Repository
github
Last release
11 years ago

signed-request Build Status

A signed JSON container. The form is basically:

base64url(hmac256(json(data))).base64url(json(data))

That's a base64 URL encoded hmac256 hash of the JSON representation of the data, followed by a dot ., followed by the base64 URL encoded JSON representation itself.

This is the same as the Facebook signed_request. But it's generically useful.