Skip to content

Commit

Permalink
style(design): small tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
codahale committed Jan 13, 2024
1 parent 78ed8b8 commit e8a8f49
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions design.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ function mix(transcript, label, input):
transcript
```

`Mix` encodes the length of the label in bits and the length of the input in bits using [NIST SP
800-185][]'s `right_encode`. This ensures an unambiguous encoding for any combination of label and
input, regardless of length. The use of `right_encode` the length of the input supports incremental
processing of data streams whose sizes are not known in advance.
`Mix` encodes the length of the label in bits and the length of the input in bits using the
`right_encode` function from [NIST SP 800-185][]. This ensures an unambiguous encoding for any
combination of label and input, regardless of length. The use of `right_encode` the length of the
input supports incremental processing of data streams whose sizes are not known in advance.

### `Derive`

Expand Down

0 comments on commit e8a8f49

Please sign in to comment.