From 6d6734bfab06a16ff19b92aebd84bc1d41d3dfd0 Mon Sep 17 00:00:00 2001 From: Love Hornquist Astrand Date: Sun, 13 Mar 2011 17:09:08 -0700 Subject: [PATCH] document hx509_certs_iter() --- lib/hx509/keyset.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/lib/hx509/keyset.c b/lib/hx509/keyset.c index 77cfd42cd..c0275d949 100644 --- a/lib/hx509/keyset.c +++ b/lib/hx509/keyset.c @@ -390,6 +390,21 @@ certs_iter(hx509_context context, void *ctx, hx509_cert cert) return func(cert); } +/** + * Iterate over all certificates in a keystore and call an block + * for each fo them. + * + * @param context a hx509 context. + * @param certs certificate store to iterate over. + * @param func block to call for each certificate. The function + * should return non-zero to abort the iteration, that value is passed + * back to the caller of hx509_certs_iter(). + * + * @return Returns an hx509 error code. + * + * @ingroup hx509_keyset + */ + int hx509_certs_iter(hx509_context context, hx509_certs certs,