JSON Web Encryption (JWE) represents encrypted content using JavaScript Object Notation (JSON) based data structures (from http://tools.ietf.org/html/draft-ietf-jose-json-web-encryption-24)
1
vote
1answer
36 views
Implementing JSON Web Encryption in Node.js
I'm looking for a way to use JSON Web Encryption (JWE) in a Node.js service. I have however only managed to find implementations of the related standard JWS. There are however several libraries for ...
0
votes
1answer
234 views
Decrypt Content Encryption Key in JSON Web Encryption
I am using OpenSSL RSA1_5 for decrypting the CEK (Content Encryption Key).
My aim is to decrypt the JWK (JSON Web Key) by which I will be getting CEK, so by using CEK I can decrypt my ciphertext ...
4
votes
0answers
79 views
Google OAuth2 API JWS conformance
Google currently exposes, at https://www.googleapis.com/oauth2/v2/certs, the following certificate values
{
"keys": [
{
"kty": "RSA",
"alg": "RS256",
"use": "sig",
"kid": ...