aboutsummaryrefslogtreecommitdiffstats
path: root/src/cms/cms_dec.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-02-16 23:31:41 +0000
committerlloyd <[email protected]>2010-02-16 23:31:41 +0000
commit4f98e547994cdbb9643d096736cdd7d1e154196e (patch)
treefd4f5aaae715607065a10eec84176c565674bc9c /src/cms/cms_dec.cpp
parent12e07d37e9622cfb24b2102090550a0260c6665c (diff)
Remove use of old typedefs
Diffstat (limited to 'src/cms/cms_dec.cpp')
-rw-r--r--src/cms/cms_dec.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cms/cms_dec.cpp b/src/cms/cms_dec.cpp
index 222399f6c..038d01869 100644
--- a/src/cms/cms_dec.cpp
+++ b/src/cms/cms_dec.cpp
@@ -17,7 +17,7 @@ namespace Botan {
* CMS_Decoder Constructor
*/
CMS_Decoder::CMS_Decoder(DataSource& in, const X509_Store& x509store,
- User_Interface& ui_ref, PKCS8_PrivateKey* key) :
+ User_Interface& ui_ref, Private_Key* key) :
ui(ui_ref), store(x509store)
{
status = GOOD;
@@ -57,7 +57,7 @@ void CMS_Decoder::initial_read(DataSource&)
/*
* Add another private key to use
*/
-void CMS_Decoder::add_key(PKCS8_PrivateKey* key)
+void CMS_Decoder::add_key(Private_Key* key)
{
if(!key)
return;