We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e336831 commit 8e3eabaCopy full SHA for 8e3eaba
1 file changed
doc/jwe.rst
@@ -65,6 +65,13 @@ Decrypting using the encrypted message above.
65
>>> _dkey = RSAKey(priv_key=priv_key)
66
>>> msg = _decryptor.decrypt(jwe, [_dkey])
67
68
+or if you know what you're doing::
69
+
70
+ >>> _decryptor = JWE_RSA()
71
+ >>> msg = _decryptor.decrypt(jwt, priv_key)
72
73
74
75
76
77
.. _RFC7516: https://tools.ietf.org/html/rfc7516
0 commit comments