Fixed all doxygen warnings
This commit is contained in:
@@ -58,4 +58,4 @@ struct attribute_handler_t {
|
||||
configuration_attribute_type_t type, chunk_t data);
|
||||
};
|
||||
|
||||
#endif /* ATTRIBUTE_HANDLER_ @}*/
|
||||
#endif /** ATTRIBUTE_HANDLER_H_ @}*/
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup attributes attributes
|
||||
* @defgroup attributes_g attributes
|
||||
* @{ @ingroup attributes
|
||||
*/
|
||||
|
||||
|
||||
@@ -200,4 +200,4 @@ struct key_encoding_t {
|
||||
*/
|
||||
key_encoding_t *key_encoding_create();
|
||||
|
||||
#endif /* KEY_ENCODING_ @}*/
|
||||
#endif /** KEY_ENCODING_H_ @}*/
|
||||
|
||||
@@ -139,8 +139,8 @@ bool private_key_equals(private_key_t *this, private_key_t *other);
|
||||
/**
|
||||
* Generic private key belongs_to() implementation, usable by implementors.
|
||||
*
|
||||
* @param this first key to compare
|
||||
* @param other second key to compare
|
||||
* @param private private key to check
|
||||
* @param public public key to compare
|
||||
* @return TRUE if this is equal to other
|
||||
*/
|
||||
bool private_key_belongs_to(private_key_t *private, public_key_t *public);
|
||||
@@ -149,7 +149,7 @@ bool private_key_belongs_to(private_key_t *private, public_key_t *public);
|
||||
* Generic private key has_fingerprint() implementation, usable by implementors.
|
||||
*
|
||||
* @param this key to check fingerprint
|
||||
* @param fp fingerprint to check
|
||||
* @param fingerprint fingerprint to check
|
||||
* @return TRUE if key has given fingerprint
|
||||
*/
|
||||
bool private_key_has_fingerprint(private_key_t *this, chunk_t fingerprint);
|
||||
|
||||
@@ -198,7 +198,7 @@ bool public_key_equals(public_key_t *this, public_key_t *other);
|
||||
* Generic public key has_fingerprint() implementation, usable by implementors.
|
||||
*
|
||||
* @param this key to check fingerprint
|
||||
* @param fp fingerprint to check
|
||||
* @param fingerprint fingerprint to check
|
||||
* @return TRUE if key has given fingerprint
|
||||
*/
|
||||
bool public_key_has_fingerprint(public_key_t *this, chunk_t fingerprint);
|
||||
|
||||
@@ -202,4 +202,4 @@ struct crypto_tester_t {
|
||||
*/
|
||||
crypto_tester_t *crypto_tester_create();
|
||||
|
||||
#endif /* CRYPTO_TESTER_ @}*/
|
||||
#endif /** CRYPTO_TESTER_H_ @}*/
|
||||
|
||||
@@ -130,7 +130,7 @@ int hasher_algorithm_to_oid(hash_algorithm_t alg);
|
||||
* Conversion of hash signature algorithm into ASN.1 OID.
|
||||
*
|
||||
* @param alg hash algorithm
|
||||
* @param alg public key type
|
||||
* @param key public key type
|
||||
* @return ASN.1 OID if, or OID_UNKNOW
|
||||
*/
|
||||
int hasher_signature_algorithm_to_oid(hash_algorithm_t alg, key_type_t key);
|
||||
|
||||
@@ -108,4 +108,4 @@ struct integrity_checker_t {
|
||||
*/
|
||||
integrity_checker_t *integrity_checker_create(char *checksum_library);
|
||||
|
||||
#endif /* INTEGRITY_CHECKER_H_ @}*/
|
||||
#endif /** INTEGRITY_CHECKER_H_ @}*/
|
||||
|
||||
@@ -14,11 +14,11 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup sql sql
|
||||
* @ingroup cplugins
|
||||
* @defgroup attr_sql attr_sql
|
||||
* @ingroup plugins
|
||||
*
|
||||
* @defgroup sql_plugin sql_plugin
|
||||
* @{ @ingroup sql
|
||||
* @{ @ingroup attr_sql
|
||||
*/
|
||||
|
||||
#ifndef ATTR_SQL_PLUGIN_H_
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
|
||||
/**
|
||||
* @defgroup sql_attribute sql_attribute
|
||||
* @{ @ingroup sql
|
||||
* @{ @ingroup attr_sql
|
||||
*/
|
||||
|
||||
#ifndef SQL_ATTRIBUTE_H_
|
||||
|
||||
@@ -44,4 +44,4 @@ struct padlock_rng_t {
|
||||
*/
|
||||
padlock_rng_t *padlock_rng_create(rng_quality_t quality);
|
||||
|
||||
#endif /** PADLOCK_RNG_ @}*/
|
||||
#endif /** PADLOCK_RNG_H_ @}*/
|
||||
|
||||
@@ -45,7 +45,7 @@ private_key_t *pem_private_key_load(key_type_t type, va_list args);
|
||||
public_key_t *pem_public_key_load(key_type_t type, va_list args);
|
||||
|
||||
/**
|
||||
* Build PEM encoded certificates..
|
||||
* Build PEM encoded certificates.
|
||||
*
|
||||
* @param type type of the certificate
|
||||
* @param args builder_part_t argument list
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
|
||||
/**
|
||||
* @defgroup pgp_public_key pgp_public_key
|
||||
* @{ @ingroup pgp_p
|
||||
* @{ @ingroup pgp
|
||||
*/
|
||||
|
||||
#ifndef PGP_BUILDER_H_
|
||||
|
||||
@@ -45,4 +45,4 @@ struct pgp_cert_t {
|
||||
*/
|
||||
pgp_cert_t *pgp_cert_load(certificate_type_t type, va_list args);
|
||||
|
||||
#endif /* PGP_CERT_ @}*/
|
||||
#endif /** PGP_CERT_H_ @}*/
|
||||
|
||||
@@ -29,4 +29,4 @@
|
||||
bool pgp_encoder_encode(key_encoding_type_t type, chunk_t *encoding,
|
||||
va_list args);
|
||||
|
||||
#endif /* PGP_ENCODER_ @}*/
|
||||
#endif /** PGP_ENCODER_H_ @}*/
|
||||
|
||||
@@ -14,11 +14,11 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup pgp_p pgp
|
||||
* @defgroup pgp pgp
|
||||
* @ingroup plugins
|
||||
*
|
||||
* @defgroup pgp_plugin pgp_plugin
|
||||
* @{ @ingroup pgp_p
|
||||
* @{ @ingroup pgp
|
||||
*/
|
||||
|
||||
#ifndef PGP_PLUGIN_H_
|
||||
|
||||
@@ -127,4 +127,4 @@ bool pgp_read_scalar(chunk_t *blob, size_t bytes, u_int32_t *scalar);
|
||||
*/
|
||||
bool pgp_read_packet(chunk_t *blob, chunk_t *data, pgp_packet_tag_t *tag);
|
||||
|
||||
#endif /* PGP_UTILS_ @}*/
|
||||
#endif /** PGP_UTILS_H_ @}*/
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
|
||||
/**
|
||||
* @defgroup pkcs1_public_key pkcs1_public_key
|
||||
* @{ @ingroup pkcs1_p
|
||||
* @{ @ingroup pkcs1
|
||||
*/
|
||||
|
||||
#ifndef PKCS1_BUILDER_H_
|
||||
|
||||
@@ -29,4 +29,4 @@
|
||||
bool pkcs1_encoder_encode(key_encoding_type_t type, chunk_t *encoding,
|
||||
va_list args);
|
||||
|
||||
#endif /* PKCS1_ENCODER_ @}*/
|
||||
#endif /** PKCS1_ENCODER_H_ @}*/
|
||||
|
||||
@@ -14,11 +14,11 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup pkcs1_p pkcs1
|
||||
* @defgroup pkcs1 pkcs1
|
||||
* @ingroup plugins
|
||||
*
|
||||
* @defgroup pkcs1_plugin pkcs1_plugin
|
||||
* @{ @ingroup pkcs1_p
|
||||
* @{ @ingroup pkcs1
|
||||
*/
|
||||
|
||||
#ifndef PKCS1_PLUGIN_H_
|
||||
|
||||
Reference in New Issue
Block a user