diff options
Diffstat (limited to 'src/pubkey/gost_3410/gost_3410.h')
-rw-r--r-- | src/pubkey/gost_3410/gost_3410.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pubkey/gost_3410/gost_3410.h b/src/pubkey/gost_3410/gost_3410.h index 8104cbb75..6daa0eaf8 100644 --- a/src/pubkey/gost_3410/gost_3410.h +++ b/src/pubkey/gost_3410/gost_3410.h @@ -63,7 +63,8 @@ class BOTAN_DLL GOST_3410_PublicKey : public virtual EC_PublicKey, * @param public_point the public point defining this key */ GOST_3410_PublicKey(const EC_Domain_Params& dom_par, - const PointGFp& public_point); + const PointGFp& public_point) : + EC_PublicKey(dom_par, public_point) {} /** * Get an x509_encoder that can be used to encode this key. |