Skip to content

Commit a5ad29f

Browse files
committed
Start the ZeroPad definition with "returns"
1 parent f6bdbeb commit a5ad29f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

draft-irtf-cfrg-aegis-aead.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ Primitives:
346346
- `a || b`: the concatenation of `a` and `b`.
347347
- `a mod b`: the remainder of the Euclidean division between `a` as the dividend and `b` as the divisor.
348348
- `LE64(x)`: returns the little-endian encoding of unsigned 64-bit integer `x`.
349-
- `ZeroPad(x, n)`: appends zeros to `x` until its length is a multiple of `n` bits. No padding is added if `x` is already a multiple of `n` bits, including when `x` is empty.
349+
- `ZeroPad(x, n)`: returns `x` after appending zeros until its length is a multiple of `n` bits. No padding is added if the length of `x` is already a multiple of `n`, including when `x` is empty.
350350
- `Truncate(x, n)`: returns the first `n` bits of `x`.
351351
- `Split(x, n)`: returns` x` split into `n`-bit blocks, ignoring partial blocks.
352352
- `Tail(x, n)`: returns the last `n` bits of `x`.

0 commit comments

Comments
 (0)