Skip to content

Commit

Permalink
Fix formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
dainnilsson committed Aug 22, 2023
1 parent 8c9f3f0 commit 032dd8b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion fido2/cose.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,15 @@ def parse(cose: Mapping[int, Any]) -> CoseKey:
@staticmethod
def supported_algorithms() -> Sequence[int]:
"""Get a list of all supported algorithm identifiers"""
algs: Sequence[Type[CoseKey]] = [ES256, EdDSA, ES384, ES512, PS256, RS256, ES256K]
algs: Sequence[Type[CoseKey]] = [
ES256,
EdDSA,
ES384,
ES512,
PS256,
RS256,
ES256K,
]
return [cls.ALGORITHM for cls in algs]


Expand Down

0 comments on commit 032dd8b

Please sign in to comment.