diff options
author | lloyd <[email protected]> | 2006-09-06 19:48:09 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-09-06 19:48:09 +0000 |
commit | e00227828d80f9c9a17ef236586211faa01e4193 (patch) | |
tree | 2573533839150184038b18d7789eaef1ee5dd904 /include/dsa.h | |
parent | 7f176fd2259fcb395ca03751f19790eac15bd9ce (diff) |
Split PK_Key into Public_Key and Private_Key; these new classes merge in
the interfaces previously included in X509_PublicKey and PKCS8_PrivateKey.
Diffstat (limited to 'include/dsa.h')
-rw-r--r-- | include/dsa.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dsa.h b/include/dsa.h index f2f630e7c..28e2eefbf 100644 --- a/include/dsa.h +++ b/include/dsa.h @@ -51,7 +51,7 @@ class DSA_PrivateKey : public DSA_PublicKey, DSA_PrivateKey(const DL_Group&, const BigInt&, const BigInt& = 0); private: friend PKCS8_PrivateKey* get_private_key(const std::string&); - void PKCS8_load_hook(); + void PKCS8_load_hook(bool = false); DSA_PrivateKey() {} }; |