aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan/crypto/pkcs7.c
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2011-05-19 16:30:43 +0200
committerTobias Brunner <tobias@strongswan.org>2011-07-06 09:43:45 +0200
commit4f9c691adbb0763d59b3f58f5bbd3dbb36748a76 (patch)
tree0cacf2dd44197384a1392ec5e4673a7d063c8563 /src/libstrongswan/crypto/pkcs7.c
parente26304348c80697ae299081567bddf1acbf022e2 (diff)
downloadstrongswan-4f9c691adbb0763d59b3f58f5bbd3dbb36748a76.tar.bz2
strongswan-4f9c691adbb0763d59b3f58f5bbd3dbb36748a76.tar.xz
Replaced pkcs7_t.create_certificate_iterator with enumerator.
The method is currently not used.
Diffstat (limited to 'src/libstrongswan/crypto/pkcs7.c')
-rw-r--r--src/libstrongswan/crypto/pkcs7.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libstrongswan/crypto/pkcs7.c b/src/libstrongswan/crypto/pkcs7.c
index a4e0b952c..57b25496a 100644
--- a/src/libstrongswan/crypto/pkcs7.c
+++ b/src/libstrongswan/crypto/pkcs7.c
@@ -669,11 +669,11 @@ static chunk_t get_contentInfo(private_pkcs7_t *this)
}
/**
- * Implements pkcs7_t.create_certificate_iterator
+ * Implements pkcs7_t.create_certificate_enumerator
*/
-static iterator_t *create_certificate_iterator(const private_pkcs7_t *this)
+static enumerator_t *create_certificate_enumerator(const private_pkcs7_t *this)
{
- return this->certs->create_iterator(this->certs, TRUE);
+ return this->certs->create_enumerator(this->certs);
}
/**
@@ -1004,7 +1004,7 @@ static private_pkcs7_t *pkcs7_create_empty(void)
this->public.parse_envelopedData = (bool (*) (pkcs7_t*,chunk_t,rsa_private_key_t*))parse_envelopedData;
this->public.get_data = (chunk_t (*) (pkcs7_t*))get_data;
this->public.get_contentInfo = (chunk_t (*) (pkcs7_t*))get_contentInfo;
- this->public.create_certificate_iterator = (iterator_t* (*) (pkcs7_t*))create_certificate_iterator;
+ this->public.create_certificate_enumerator = (enumerator_t* (*) (pkcs7_t*))create_certificate_enumerator;
this->public.set_certificate = (void (*) (pkcs7_t*,x509_t*))set_certificate;
this->public.set_attributes = (void (*) (pkcs7_t*,pkcs9_t*))set_attributes;
this->public.build_envelopedData = (bool (*) (pkcs7_t*,x509_t*,encryption_algorithm_t))build_envelopedData;