diff options
author | Tobias Brunner <tobias@strongswan.org> | 2010-07-05 15:04:30 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2010-07-05 15:04:30 +0200 |
commit | 83b23011deea034e6b8e023dabce20c962a31c8d (patch) | |
tree | 8068249d4ac72824b0a97e3c903b50e31af79440 /src/libstrongswan/plugins/openssl/openssl_util.h | |
parent | 8f7e8e075a269fddaf4a8ec2cf970a5eba9d35dc (diff) | |
download | strongswan-83b23011deea034e6b8e023dabce20c962a31c8d.tar.bz2 strongswan-83b23011deea034e6b8e023dabce20c962a31c8d.tar.xz |
Some Doxygen fixes.
Diffstat (limited to 'src/libstrongswan/plugins/openssl/openssl_util.h')
-rw-r--r-- | src/libstrongswan/plugins/openssl/openssl_util.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libstrongswan/plugins/openssl/openssl_util.h b/src/libstrongswan/plugins/openssl/openssl_util.h index 405936c9a..25c692a1a 100644 --- a/src/libstrongswan/plugins/openssl/openssl_util.h +++ b/src/libstrongswan/plugins/openssl/openssl_util.h @@ -38,7 +38,7 @@ * @param hash_type NID of the hash * @param data the chunk of data to hash * @param hash chunk that contains the hash - * @return TRUE on success, FALSE otherwise + * @return TRUE on success, FALSE otherwise */ bool openssl_hash_chunk(int hash_type, chunk_t data, chunk_t *hash); @@ -70,8 +70,8 @@ bool openssl_bn_split(chunk_t chunk, BIGNUM *a, BIGNUM *b); /** * Allocate a chunk using the i2d function of a given object * - * @param type_id type of the object - * @param object object to convert to DER + * @param type type of the object + * @param obj object to convert to DER * @returns allocated chunk of the object, or chunk_empty */ #define openssl_i2chunk(type, obj) ({ \ @@ -106,7 +106,7 @@ identification_t *openssl_x509_name2id(X509_NAME *name); /** * Check if an ASN1 oid is a an OID known by libstrongswan. * - * @param object openssl ASN1 object + * @param obj openssl ASN1 object * @returns OID, as defined in <asn1/oid.h> */ int openssl_asn1_known_oid(ASN1_OBJECT *obj); |