Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
peppelinux authored Nov 19, 2024
1 parent c22efcc commit 1ea832a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions pyeudiw/federation/trust_chain/parse.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
from cryptojwt.jwk.ec import ECKey
from cryptojwt.jwk.rsa import RSAKey
from cryptojwt.jwk.okp import OKPKey
from cryptojwt.jwk.hmac import SYMKey



def get_public_key_from_trust_chain(trust_chain: list[str]) -> ECKey | RSAKey | OKPKey | SYMKey | dict:
def get_public_key_from_trust_chain(trust_chain: list[str]) -> ECKey | RSAKey | dict:
raise NotImplementedError("TODO")

0 comments on commit 1ea832a

Please sign in to comment.