From 045969f4bf711435f55620cc1841d1c138211641 Mon Sep 17 00:00:00 2001 From: Blyth0He <1414924020@qq.com> Date: Tue, 23 Nov 2021 16:32:42 +0800 Subject: [PATCH] fix bug --- jwt_tool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jwt_tool.py b/jwt_tool.py index 423f287..6bf483d 100644 --- a/jwt_tool.py +++ b/jwt_tool.py @@ -527,7 +527,7 @@ def signingToken(newheadDict, newpaylDict): def checkSig(sig, contents, key): quiet = False if key == "": - cprintc("Type in the key to test", white) + cprintc("Type in the key to test", "white") key = input("> ") testKey(key.encode(), sig, contents, headDict, quiet)