We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e10fb2a commit 35d6d7cCopy full SHA for 35d6d7c
1 file changed
python/http_ece/__init__.py
@@ -68,11 +68,11 @@ def lengthPrefix(key):
68
nonceinfo = buildInfo(b"nonce", context)
69
elif padSize == 1:
70
if authSecret is not None:
71
- keyinfo = buildInfo(b"aesgcm128", context)
72
- nonceinfo = buildInfo(b"nonce", context)
+ keyinfo = buildInfo(b"aesgcm128", context)
+ nonceinfo = buildInfo(b"nonce", context)
73
else:
74
- keyinfo = b"Content-Encoding: aesgcm128"
75
- nonceinfo = b"Content-Encoding: nonce"
+ keyinfo = b"Content-Encoding: aesgcm128"
+ nonceinfo = b"Content-Encoding: nonce"
76
77
raise Exception(u"unable to set context for padSize=" + str(padSize))
78
0 commit comments