We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa564e5 commit f9ff850Copy full SHA for f9ff850
src/lib/key_material.cpp
@@ -191,10 +191,6 @@ KeyParams::create(pgp_pubkey_alg_t alg)
191
}
192
193
194
-DSAKeyParams::DSAKeyParams() : BitsKeyParams(DSA_DEFAULT_P_BITLEN), qbits_(0)
195
-{
196
-}
197
-
198
void
199
DSAKeyParams::check_defaults() noexcept
200
{
src/lib/key_material.hpp
@@ -84,7 +84,7 @@ class DSAKeyParams : public BitsKeyParams {
84
size_t qbits_;
85
86
public:
87
- DSAKeyParams();
+ DSAKeyParams() : BitsKeyParams(DSA_DEFAULT_P_BITLEN), qbits_(0){};
88
89
size_t
90
qbits() const noexcept
0 commit comments