aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/pubkey/ec_group/point_mul.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/pubkey/ec_group/point_mul.h b/src/lib/pubkey/ec_group/point_mul.h
index da1d3b744..a85c2bee9 100644
--- a/src/lib/pubkey/ec_group/point_mul.h
+++ b/src/lib/pubkey/ec_group/point_mul.h
@@ -15,7 +15,7 @@ class Modular_Reducer;
static const size_t PointGFp_SCALAR_BLINDING_BITS = 80;
-class PointGFp_Base_Point_Precompute
+class PointGFp_Base_Point_Precompute final
{
public:
PointGFp_Base_Point_Precompute(const PointGFp& base_point,
@@ -38,7 +38,7 @@ class PointGFp_Base_Point_Precompute
std::vector<word> m_W;
};
-class PointGFp_Var_Point_Precompute
+class PointGFp_Var_Point_Precompute final
{
public:
PointGFp_Var_Point_Precompute(const PointGFp& point);
@@ -55,7 +55,7 @@ class PointGFp_Var_Point_Precompute
std::vector<PointGFp> m_U;
};
-class PointGFp_Multi_Point_Precompute
+class PointGFp_Multi_Point_Precompute final
{
public:
PointGFp_Multi_Point_Precompute(const PointGFp& g1,