Skip to content

Commit

Permalink
Update jwk.py
Browse files Browse the repository at this point in the history
  • Loading branch information
spilikin committed Oct 10, 2022
1 parent e897acb commit 36e39ba
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions jwcrypto/jwk.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,16 @@ class ParmType(Enum):
'Ed448': 'Ed448 signature algorithm key pairs',
'X25519': 'X25519 function key pairs',
'X448': 'X448 function key pairs',
'BP-256': 'BrainpoolP256R1 curve (unregistered, custom-defined in breach of IETF rules by gematik GmbH)',
'BP-384': 'BrainpoolP384R1 curve (unregistered, custom-defined in breach of IETF rules by gematik GmbH)',
'BP-512': 'BrainpoolP512R1 curve (unregistered, custom-defined in breach of IETF rules by gematik GmbH)'}
'BP-256': 'BrainpoolP256R1 curve'
' (unregistered, custom-defined in breach'
' of IETF rules by gematik GmbH)',
'BP-384': 'BrainpoolP384R1 curve'
' (unregistered, custom-defined in breach'
' of IETF rules by gematik GmbH)',
'BP-512': 'BrainpoolP512R1 curve'
' (unregistered, custom-defined in breach'
' of IETF rules by gematik GmbH)'
}
"""Registry of allowed Elliptic Curves"""

# RFC 7517 - 8.2
Expand Down

0 comments on commit 36e39ba

Please sign in to comment.