diff options
author | lloyd <[email protected]> | 2006-09-06 19:51:17 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-09-06 19:51:17 +0000 |
commit | 559e2860f0716dc5c40697a08a790d3b7c42ce8e (patch) | |
tree | 358bafd6ffd1609da224fb100cb2f39f3af3af03 /include/x509_ca.h | |
parent | e00227828d80f9c9a17ef236586211faa01e4193 (diff) |
Rename instances of X509_PublicKey and PKCS8_PrivateKey
Diffstat (limited to 'include/x509_ca.h')
-rw-r--r-- | include/x509_ca.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/x509_ca.h b/include/x509_ca.h index 4442601bb..a19259d1c 100644 --- a/include/x509_ca.h +++ b/include/x509_ca.h @@ -35,7 +35,7 @@ class X509_CA const X509_DN&, const X509_DN&, const Extensions&); - X509_CA(const X509_Certificate&, const PKCS8_PrivateKey&); + X509_CA(const X509_Certificate&, const Private_Key&); ~X509_CA(); private: X509_CA(const X509_CA&) {} @@ -51,7 +51,7 @@ class X509_CA /************************************************* * Choose a signing format for the key * *************************************************/ -PK_Signer* choose_sig_format(const PKCS8_PrivateKey&, AlgorithmIdentifier&); +PK_Signer* choose_sig_format(const Private_Key&, AlgorithmIdentifier&); } |