Skip to content

Commit 6cf08e4

Browse files
committed
status list token cwt example uses new claim key
1 parent ce693f4 commit 6cf08e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/status_token.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def buildCWT(
135135
claims[CWTClaims.EXP] = int(exp.timestamp())
136136
if ttl is not None:
137137
claims[65534] = int(ttl.total_seconds())
138-
claims[65535] = self.list.encodeAsCBOR()
138+
claims[65533] = self.list.encodeAsCBOR()
139139

140140
# build header
141141
if optional_protected_header is not None:

0 commit comments

Comments
 (0)