Skip to content

Commit

Permalink
Use SHAKE-256 to hash FrodoKEM KAT elements
Browse files Browse the repository at this point in the history
  • Loading branch information
reneme committed Oct 5, 2023
1 parent e930064 commit 322b34e
Show file tree
Hide file tree
Showing 3 changed files with 919 additions and 913 deletions.
14 changes: 7 additions & 7 deletions src/scripts/dev_tools/gen_frodo_kat.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,20 +59,20 @@ def read_kats(self):
yield kat
kat = {}

def sha3_256(v):
def shake_256_16(v):
# v is assumed to be hex
h = hashlib.sha3_256()
h = hashlib.shake_256()
h.update(binascii.unhexlify(v))
return h.hexdigest()
return h.hexdigest(16)

def compress_kat(kat):
first = kat['count'] == 0
del kat['count']

# rename keys
kat['pk'] = sha3_256(kat.pop('pk'))
kat['sk'] = sha3_256(kat.pop('sk'))
kat['ct'] = sha3_256(kat.pop('ct'))
kat['pk'] = shake_256_16(kat.pop('pk'))
kat['sk'] = shake_256_16(kat.pop('sk'))
kat['ct'] = shake_256_16(kat.pop('ct'))

return kat

Expand Down Expand Up @@ -112,7 +112,7 @@ def main(args = None):
print("# See src/scripts/dev_tools/gen_frodo_kat.py\n", file=output)

for file in args[1:]:
mode = map_mode(os.path.basename(os.path.splitext(file)[0]))
mode = map_mode(os.path.basename(os.path.splitext(file)[0]), is_ephemeral)

reader = KatReader(open(file))

Expand Down
Loading

0 comments on commit 322b34e

Please sign in to comment.