We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0596ea2 commit fd8cbcdCopy full SHA for fd8cbcd
kats/scripts/parse_ascon_aead128_acvp_kat.py
@@ -21,7 +21,7 @@ def main():
21
for test in test_group["tests"]:
22
if test["payloadLen"] % 8 != 0:
23
continue
24
- if test["aadLen"] % 8 != 0:
+ if test["adLen"] % 8 != 0:
25
26
if test["tagLen"] % 8 != 0:
27
@@ -32,7 +32,7 @@ def main():
32
sys.stdout.write(f'Key = {test["key"]}\n')
33
sys.stdout.write(f'Nonce = {test["nonce"]}\n')
34
sys.stdout.write(f'PT = {test["pt"]}\n')
35
- sys.stdout.write(f'AD = {test["aad"]}\n')
+ sys.stdout.write(f'AD = {test["ad"]}\n')
36
sys.stdout.write(f'CT = {test["ct"]}\n')
37
sys.stdout.write(f'Tag = {test["tag"]}\n')
38
0 commit comments