Skip to content

Commit 5054bab

Browse files
committed
Remove log.
1 parent 76f2e71 commit 5054bab

2 files changed

Lines changed: 0 additions & 2 deletions

File tree

cwt/recipient_algs/direct_hkdf.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ def __init__(
4545
self._unprotected[-20] = self._salt
4646

4747
# PartyU nonce
48-
print(self._context)
4948
if self._context[1][1]:
5049
self._unprotected[-22] = self._context[1][1]
5150
# PartyV nonce

cwt/recipient_algs/hpke.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ def __init__(
2525
if -4 not in unprotected:
2626
raise ValueError("HPKE sender information(-4) not found.")
2727
if not isinstance(unprotected[-4], list) or len(unprotected[-4]) not in [3, 4]:
28-
print(len(unprotected[-4]))
2928
raise ValueError("HPKE sender information(-4) should be a list of length 3 or 4.")
3029
self._suite = CipherSuite.new(KEMId(unprotected[-4][0]), KDFId(unprotected[-4][1]), AEADId(unprotected[-4][2]))
3130
return

0 commit comments

Comments
 (0)