Skip to content

Commit 48d21f4

Browse files
committed
Update helpers/README.md
1 parent 9f8a443 commit 48d21f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

helpers/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ void sodium_add(unsigned char *a, const unsigned char *b, const size_t len);
7575
7676
The `sodium_add()` function accepts two pointers to unsigned numbers encoded in little-endian format, `a` and `b`, both of size `len` bytes.
7777
78-
It computes `a` + `b` in constant time, and overwrites `a` with the result.
78+
It computes `(a + b) mod 2^(8*len)` in constant time, and overwrites `a` with the result.
7979
8080
This function was introduced in libsodium 1.0.7.
8181

0 commit comments

Comments
 (0)