aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/math/numbertheory/numthry.h
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2020-11-08 07:22:30 -0500
committerJack Lloyd <[email protected]>2020-11-08 07:22:30 -0500
commite2d9d580a555a8beb8161f734c0d6026ac28a498 (patch)
tree4e6405f9927e947b92fa4284826e62ed7907b3ab /src/lib/math/numbertheory/numthry.h
parenteb5f0f69456bde196d3a9049933e0697779128c8 (diff)
Remove mul_add
Testing shows it doesn't seem to matter for performance anyway
Diffstat (limited to 'src/lib/math/numbertheory/numthry.h')
-rw-r--r--src/lib/math/numbertheory/numthry.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/lib/math/numbertheory/numthry.h b/src/lib/math/numbertheory/numthry.h
index 4bf572f5b..e1a16a570 100644
--- a/src/lib/math/numbertheory/numthry.h
+++ b/src/lib/math/numbertheory/numthry.h
@@ -15,18 +15,6 @@ namespace Botan {
class RandomNumberGenerator;
/**
-* Fused multiply-add
-* @param a an integer
-* @param b an integer
-* @param c an integer
-* @return (a*b)+c
-*/
-BigInt BOTAN_PUBLIC_API(2,0) BOTAN_DEPRECATED("Just use (a*b)+c")
- mul_add(const BigInt& a,
- const BigInt& b,
- const BigInt& c);
-
-/**
* Return the absolute value
* @param n an integer
* @return absolute value of n