The Wayback Machine - https://web.archive.org/web/20220510172714/https://github.com/mpdavis/python-jose/commit/a5d8c326bcb155c8f759bae137918a4e76ce3d4e
Skip to content
Permalink
Browse files
Update supported algoritm values
The correct value is written with "-" and not with "_".
  • Loading branch information
SiGe11 committed Oct 6, 2021
1 parent be8e914 commit a5d8c326bcb155c8f759bae137918a4e76ce3d4e
Showing with 6 additions and 6 deletions.
  1. +6 −6 docs/jwe/index.rst
@@ -12,11 +12,11 @@ The following algorithms are currently supported.
+------------------+------------------------------------------------+
| Encryption Value | Encryption Algorithm, Mode, and Auth Tag |
+==================+================================================+
| A128CBC_HS256 | AES w/128 bit key in CBC mode w/SHA256 HMAC |
| A128CBC-HS256 | AES w/128 bit key in CBC mode w/SHA256 HMAC |
+------------------+------------------------------------------------+
| A192CBC_HS384 | AES w/128 bit key in CBC mode w/SHA256 HMAC |
| A192CBC-HS384 | AES w/128 bit key in CBC mode w/SHA256 HMAC |
+------------------+------------------------------------------------+
| A256CBC_HS512 | AES w/128 bit key in CBC mode w/SHA256 HMAC |
| A256CBC-HS512 | AES w/128 bit key in CBC mode w/SHA256 HMAC |
+------------------+------------------------------------------------+
| A128GCM | AES w/128 bit key in GCM mode and GCM auth tag |
+------------------+------------------------------------------------+
@@ -35,11 +35,11 @@ The following algorithms are currently supported.
+=================+================================================+
| DIR | Direct (no key wrap) |
+-----------------+------------------------------------------------+
| RSA1_5 | RSAES with PKCS1 v1.5 |
| RSA1-5 | RSAES with PKCS1 v1.5 |
+-----------------+------------------------------------------------+
| RSA_OAEP | RSAES OAEP using default parameters |
| RSA-OAEP | RSAES OAEP using default parameters |
+-----------------+------------------------------------------------+
| RSA_OAEP_256 | RSAES OAEP using SHA-256 and MGF1 with SHA-256 |
| RSA-OAEP-256 | RSAES OAEP using SHA-256 and MGF1 with SHA-256 |
+-----------------+------------------------------------------------+
| A128KW | AES Key Wrap with default IV using 128-bit key |
+-----------------+------------------------------------------------+

0 comments on commit a5d8c32

Please sign in to comment.