aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/math
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2020-12-12 07:22:03 -0500
committerJack Lloyd <[email protected]>2020-12-12 07:22:03 -0500
commit5f15f13a99f2d404318f878f757ccd90b0d32f91 (patch)
tree9dec5fd8442da5d165cfef60ed9b601faa8e2f0c /src/lib/math
parentf7a27ad9f9d2e22bef7c27f66f0373e1b6d40654 (diff)
Remove divide forwarding function
Was just used during the vartime/ct switch
Diffstat (limited to 'src/lib/math')
-rw-r--r--src/lib/math/bigint/divide.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/lib/math/bigint/divide.h b/src/lib/math/bigint/divide.h
index 157472dfc..cd98ca3eb 100644
--- a/src/lib/math/bigint/divide.h
+++ b/src/lib/math/bigint/divide.h
@@ -42,14 +42,6 @@ void ct_divide(const BigInt& x,
BigInt& q,
BigInt& r);
-inline void divide(const BigInt& x,
- const BigInt& y,
- BigInt& q,
- BigInt& r)
- {
- ct_divide(x, y, q, r);
- }
-
/**
* BigInt division, const time variant
*