diff options
author | Martin Willi <martin@strongswan.org> | 2006-06-20 08:43:57 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-06-20 08:43:57 +0000 |
commit | aed58dcc937fe1c8ab0a1fe952f689a942f966f4 (patch) | |
tree | 47eb30fe1c2c4865c776548d683b22f1a04f3d95 /src/charon/config/credentials/credential_store.h | |
parent | 76dafed7a79fcb50949b131292958e262fbeb774 (diff) | |
download | strongswan-aed58dcc937fe1c8ab0a1fe952f689a942f966f4.tar.bz2 strongswan-aed58dcc937fe1c8ab0a1fe952f689a942f966f4.tar.xz |
readded local_credential_store
added sendcert policy to connection
some other cleanups
Diffstat (limited to 'src/charon/config/credentials/credential_store.h')
-rwxr-xr-x | src/charon/config/credentials/credential_store.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/charon/config/credentials/credential_store.h b/src/charon/config/credentials/credential_store.h index 4b6623d7c..302eefedc 100755 --- a/src/charon/config/credentials/credential_store.h +++ b/src/charon/config/credentials/credential_store.h @@ -108,6 +108,7 @@ struct credential_store_t { * @return pointer to the added or already existing certificate */ x509_t* (*add_ca_certificate) (credential_store_t *this, x509_t *cert); + /** * @brief Lists all certificates kept in the local credential store. * @@ -143,7 +144,7 @@ struct credential_store_t { * @param this calling object * @param path directory to load certificates from */ - void (*load_ca_certificates) (credential_store_t *this, const char *path); + void (*load_ca_certificates) (credential_store_t *this); /** * @brief Loads CRLs from a default directory. @@ -153,7 +154,7 @@ struct credential_store_t { * @param this calling object * @param path directory to load crls from */ - void (*load_crls) (credential_store_t *this, const char *path); + void (*load_crls) (credential_store_t *this); /** * @brief Loads RSA private keys defined in ipsec.secrets @@ -163,10 +164,8 @@ struct credential_store_t { * key must already be loaded to get the ID from. * * @param this calling object - * @param secretsfile file where secrets are stored - * @param path default directory for private keys */ - void (*load_private_keys) (credential_store_t *this, const char *secretsfile, const char *path); + void (*load_private_keys) (credential_store_t *this); /** * @brief Destroys a credential_store_t object. |