Skip to content

Commit 28065cb

Browse files
authored
Merge pull request #176 from oauth-wg/c2bo/status-list-cwt-claim-example
status list token cwt example uses new claim key
2 parents 9f6323a + 6cf08e4 commit 28065cb

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)