Skip to content

Commit

Permalink
Use AES-128 consistently
Browse files Browse the repository at this point in the history
  • Loading branch information
divergentdave authored and cjpatton committed Nov 2, 2024
1 parent a91d4b4 commit 3930994
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions draft-irtf-cfrg-vdaf.md
Original file line number Diff line number Diff line change
Expand Up @@ -2241,9 +2241,9 @@ This section describes XofFixedKeyAes128, which is used to implement the IDPF
of Poplar1 ({{idpf-bbcggi21}}). It is NOT RECOMMENDED to use this XOF for any
other purpose. See {{xof-vs-ro}} for a more detailed discussion.

XofFixedKeyAes128 uses the AES128 blockcipher {{AES}} for most of the
XofFixedKeyAes128 uses the AES-128 blockcipher {{AES}} for most of the
computation, thereby taking advantage of the hardware implementations of this
blockcipher that are widely available. AES128 is used in a fixed-key mode of
blockcipher that are widely available. AES-128 is used in a fixed-key mode of
operation; the key is derived during initialization using TurboSHAKE128.

Pre-conditions:
Expand Down
2 changes: 1 addition & 1 deletion poc/vdaf_poc/xof.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def hash_block(self, block: bytes) -> bytes:
key that stays constant for all XOF evaluations of the same
Client, but differs between Clients.
Function `AES128(key, block)` is the AES128 blockcipher.
Function `AES128(key, block)` is the AES-128 blockcipher.
---
Expand Down

0 comments on commit 3930994

Please sign in to comment.