Skip to content

Commit

Permalink
Update helpers/README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jedisct1 committed Dec 8, 2015
1 parent 9f8a443 commit 48d21f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ void sodium_add(unsigned char *a, const unsigned char *b, const size_t len);
The `sodium_add()` function accepts two pointers to unsigned numbers encoded in little-endian format, `a` and `b`, both of size `len` bytes.
It computes `a` + `b` in constant time, and overwrites `a` with the result.
It computes `(a + b) mod 2^(8*len)` in constant time, and overwrites `a` with the result.
This function was introduced in libsodium 1.0.7.
Expand Down

0 comments on commit 48d21f4

Please sign in to comment.