Skip to content

Commit

Permalink
Merge pull request #18 from multiformats/fix-max-size
Browse files Browse the repository at this point in the history
Fix typo 2^31 -> 2^63
  • Loading branch information
Stebalien committed Aug 20, 2019
2 parents f1ba310 + e175bb7 commit 8097523
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func main() {

### Practical maximum of 9 bytes (for security)

For security, to avoid memory attacks, we use a "practical max" of 9 bytes. Though there is no theoretical limit, and future specs can grow this number if it is truly necessary to have code or length values larger than `2^31`.
For security, to avoid memory attacks, we use a "practical max" of 9 bytes. Though there is no theoretical limit, and future specs can grow this number if it is truly necessary to have code or length values equal to or larger than `2^63`.

For the forseeable future:

Expand Down

0 comments on commit 8097523

Please sign in to comment.