Skip to content

Commit 67e3e5e

Browse files
author
Michael Davis
committed
Finalize jwk refactor
1 parent ad8f5c3 commit 67e3e5e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

jose/jws.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -162,10 +162,6 @@ def _sign_header_and_claims(encoded_header, encoded_claims, algorithm, key_data)
162162
try:
163163
key = jwk.construct(key_data, algorithm)
164164
signature = key.sign(signing_input)
165-
166-
# alg_obj = get_algorithm_object(algorithm)
167-
# key = alg_obj.prepare_key(key)
168-
# signature = alg_obj.sign(signing_input, key)
169165
except Exception as e:
170166
raise JWSError(e)
171167

0 commit comments

Comments
 (0)