diff options
Diffstat (limited to 'src/lib/math/bigint')
-rw-r--r-- | src/lib/math/bigint/bigint.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/math/bigint/bigint.h b/src/lib/math/bigint/bigint.h index 8c627c584..ea0f1c60e 100644 --- a/src/lib/math/bigint/bigint.h +++ b/src/lib/math/bigint/bigint.h @@ -282,6 +282,7 @@ class BOTAN_PUBLIC_API(2,0) BigInt final /** * Set *this to (*this + y) % mod + * This function assumes *this is >= 0 && < mod * @param y the BigInt to add - assumed y >= 0 and y < mod * @param mod the positive modulus * @param ws a temp workspace @@ -290,6 +291,7 @@ class BOTAN_PUBLIC_API(2,0) BigInt final /** * Set *this to (*this - y) % mod + * This function assumes *this is >= 0 && < mod * @param y the BigInt to subtract - assumed y >= 0 and y < mod * @param mod the positive modulus * @param ws a temp workspace |