sandal icon indicating copy to clipboard operation
sandal copied to clipboard

A ruby library for creating and reading JSON Web Tokens (JWT), supporting JSON Web Signatures (JWS) and JSON Web Encryption (JWE).

Results 1 sandal issues
Sort by recently updated
recently updated
newest added

Following your example, and generating the keys as you specified, I get this error: ``` alg = Sandal::Enc::Alg::RSA_OAEP.new(File.read('rsa_public_key.pem')) encrypter = Sandal::Enc::A128GCM.new(alg) jwe_token = Sandal.encrypt_token(jws_token, encrypter, { 'kid': 'your rsa key',...