updated Doxyfile
properly close all doxygen groups fixed remaining doxygen warnings
This commit is contained in:
@@ -110,7 +110,7 @@ int asn1_known_oid(chunk_t object);
|
||||
* Returns the length of an ASN.1 object
|
||||
* The blob pointer is advanced past the tag length fields
|
||||
*
|
||||
* @param pointer to an ASN.1 coded blob
|
||||
* @param blob pointer to an ASN.1 coded blob
|
||||
* @return length of ASN.1 object
|
||||
*/
|
||||
u_int asn1_length(chunk_t *blob);
|
||||
@@ -168,7 +168,7 @@ chunk_t asn1_from_time(const time_t *time, asn1_t type);
|
||||
* Parse an ASN.1 UTCTIME or GENERALIZEDTIME object
|
||||
*
|
||||
* @param blob ASN.1 coded time object
|
||||
* @param level top-most level offset
|
||||
* @param level0 top-most level offset
|
||||
* @return time_t in UTC
|
||||
*/
|
||||
time_t asn1_parse_time(chunk_t blob, int level0);
|
||||
@@ -223,10 +223,10 @@ chunk_t asn1_bitstring(const char *mode, chunk_t content);
|
||||
/**
|
||||
* Build an ASN.1 object from a variable number of individual chunks
|
||||
*
|
||||
* @param typ ASN.1 type to be created
|
||||
* @param type ASN.1 type to be created
|
||||
* @param mode for each list member: 'c' for copy or 'm' for move
|
||||
* @return chunk containing the ASN.1 coded object
|
||||
*/
|
||||
chunk_t asn1_wrap(asn1_t type, const char *mode, ...);
|
||||
|
||||
#endif /* ASN1_H_ @}*/
|
||||
#endif /** ASN1_H_ @}*/
|
||||
|
||||
@@ -116,4 +116,4 @@ struct asn1_parser_t {
|
||||
*/
|
||||
asn1_parser_t* asn1_parser_create(asn1Object_t const *objects, chunk_t blob);
|
||||
|
||||
#endif /* ASN1_PARSER_H_ @}*/
|
||||
#endif /** ASN1_PARSER_H_ @}*/
|
||||
|
||||
@@ -92,11 +92,11 @@ bool chunk_write(chunk_t chunk, char *path, mode_t mask, bool force);
|
||||
/**
|
||||
* Convert a chunk of data to hex encoding.
|
||||
*
|
||||
* The resulting string is '\0' terminated, but the chunk does not include
|
||||
* the '\0'. If buf is supplied, it must hold at least (chunk.len * 2 + 1).
|
||||
* The resulting string is '\\0' terminated, but the chunk does not include
|
||||
* the '\\0'. If buf is supplied, it must hold at least (chunk.len * 2 + 1).
|
||||
*
|
||||
* @param chunk data to convert
|
||||
* @param buff buffer to write to, NULL to malloc
|
||||
* @param buf buffer to write to, NULL to malloc
|
||||
* @param uppercase TRUE to use uppercase letters
|
||||
* @return chunk of encoded data
|
||||
*/
|
||||
@@ -117,11 +117,11 @@ chunk_t chunk_from_hex(chunk_t hex, char *buf);
|
||||
/**
|
||||
* Convert a chunk of data to its base64 encoding.
|
||||
*
|
||||
* The resulting string is '\0' terminated, but the chunk does not include
|
||||
* the '\0'. If buf is supplied, it must hold at least (chunk.len * 4 / 3 + 1).
|
||||
* The resulting string is '\\0' terminated, but the chunk does not include
|
||||
* the '\\0'. If buf is supplied, it must hold at least (chunk.len * 4 / 3 + 1).
|
||||
*
|
||||
* @param chunk data to convert
|
||||
* @param buff buffer to write to, NULL to malloc
|
||||
* @param buf buffer to write to, NULL to malloc
|
||||
* @return chunk of encoded data
|
||||
*/
|
||||
chunk_t chunk_to_base64(chunk_t chunk, char *buf);
|
||||
@@ -249,4 +249,4 @@ u_int32_t chunk_hash_inc(chunk_t chunk, u_int32_t hash);
|
||||
int chunk_printf_hook(char *dst, size_t len, printf_hook_spec_t *spec,
|
||||
const void *const *args);
|
||||
|
||||
#endif /* CHUNK_H_ @}*/
|
||||
#endif /** CHUNK_H_ @}*/
|
||||
|
||||
@@ -129,4 +129,4 @@ struct builder_t {
|
||||
*/
|
||||
void* builder_free(builder_t *this);
|
||||
|
||||
#endif /* BUILDER_H_ @}*/
|
||||
#endif /** BUILDER_H_ @}*/
|
||||
|
||||
@@ -82,5 +82,4 @@ struct ac_t {
|
||||
bool (*equals_holder) (ac_t *this, ac_t *other);
|
||||
};
|
||||
|
||||
#endif /* AC_H_ @}*/
|
||||
|
||||
#endif /** AC_H_ @}*/
|
||||
|
||||
@@ -189,4 +189,4 @@ struct certificate_t {
|
||||
void (*destroy)(certificate_t *this);
|
||||
};
|
||||
|
||||
#endif /* CERTIFICATE_H_ @}*/
|
||||
#endif /** CERTIFICATE_H_ @}*/
|
||||
|
||||
@@ -85,4 +85,4 @@ struct crl_t {
|
||||
|
||||
};
|
||||
|
||||
#endif /* CRL_H_ @}*/
|
||||
#endif /** CRL_H_ @}*/
|
||||
|
||||
@@ -38,4 +38,4 @@ struct ocsp_request_t {
|
||||
certificate_t interface;
|
||||
};
|
||||
|
||||
#endif /* OCSP_REQUEST_H_ @}*/
|
||||
#endif /** OCSP_REQUEST_H_ @}*/
|
||||
|
||||
@@ -81,4 +81,4 @@ struct ocsp_response_t {
|
||||
enumerator_t* (*create_cert_enumerator)(ocsp_response_t *this);
|
||||
};
|
||||
|
||||
#endif /* OCSP_RESPONSE_H_ @}*/
|
||||
#endif /** OCSP_RESPONSE_H_ @}*/
|
||||
|
||||
@@ -104,4 +104,4 @@ struct x509_t {
|
||||
enumerator_t* (*create_ocsp_uri_enumerator)(x509_t *this);
|
||||
};
|
||||
|
||||
#endif /* X509_H_ @}*/
|
||||
#endif /** X509_H_ @}*/
|
||||
|
||||
@@ -109,4 +109,4 @@ struct credential_factory_t {
|
||||
*/
|
||||
credential_factory_t *credential_factory_create();
|
||||
|
||||
#endif /* CREDENTIAL_FACTORY_H_ @}*/
|
||||
#endif /** CREDENTIAL_FACTORY_H_ @}*/
|
||||
|
||||
@@ -111,4 +111,4 @@ struct private_key_t {
|
||||
void (*destroy)(private_key_t *this);
|
||||
};
|
||||
|
||||
#endif /* PRIVATE_KEY_H_ @} */
|
||||
#endif /** PRIVATE_KEY_H_ @}*/
|
||||
|
||||
@@ -152,4 +152,4 @@ struct public_key_t {
|
||||
void (*destroy)(public_key_t *this);
|
||||
};
|
||||
|
||||
#endif /* PUBLIC_KEY_H_ @} */
|
||||
#endif /** PUBLIC_KEY_H_ @}*/
|
||||
|
||||
@@ -122,4 +122,4 @@ struct crypter_t {
|
||||
void (*destroy) (crypter_t *this);
|
||||
};
|
||||
|
||||
#endif /*CRYPTER_H_ @} */
|
||||
#endif /** CRYPTER_H_ @}*/
|
||||
|
||||
@@ -267,4 +267,4 @@ struct crypto_factory_t {
|
||||
*/
|
||||
crypto_factory_t *crypto_factory_create();
|
||||
|
||||
#endif /* CRYPTO_FACTORY_H_ @}*/
|
||||
#endif /** CRYPTO_FACTORY_H_ @}*/
|
||||
|
||||
@@ -108,4 +108,4 @@ struct diffie_hellman_t {
|
||||
void (*destroy) (diffie_hellman_t *this);
|
||||
};
|
||||
|
||||
#endif /*DIFFIE_HELLMAN_H_ @} */
|
||||
#endif /** DIFFIE_HELLMAN_H_ @}*/
|
||||
|
||||
@@ -133,4 +133,4 @@ int hasher_algorithm_to_oid(hash_algorithm_t alg);
|
||||
*/
|
||||
int hasher_signature_algorithm_to_oid(hash_algorithm_t alg);
|
||||
|
||||
#endif /* HASHER_H_ @} */
|
||||
#endif /** HASHER_H_ @}*/
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
* @{ @ingroup crypto
|
||||
*/
|
||||
|
||||
#ifndef _PKCS7_H_
|
||||
#define _PKCS7_H_
|
||||
#ifndef PKCS7_H_
|
||||
#define PKCS7_H_
|
||||
|
||||
typedef struct pkcs7_t pkcs7_t;
|
||||
|
||||
@@ -163,7 +163,7 @@ pkcs7_t *pkcs7_create_from_chunk(chunk_t chunk, u_int level);
|
||||
/**
|
||||
* Create a PKCS#7 contentInfo object
|
||||
*
|
||||
* @param chunk chunk containing data
|
||||
* @param data chunk containing data
|
||||
* @return created pkcs7_contentInfo object.
|
||||
*/
|
||||
pkcs7_t *pkcs7_create_from_data(chunk_t data);
|
||||
@@ -177,4 +177,4 @@ pkcs7_t *pkcs7_create_from_data(chunk_t data);
|
||||
*/
|
||||
pkcs7_t *pkcs7_create_from_file(const char *filename, const char *label);
|
||||
|
||||
#endif /* _PKCS7_H_ @} */
|
||||
#endif /** PKCS7_H_ @}*/
|
||||
|
||||
@@ -92,9 +92,8 @@ pkcs9_t *pkcs9_create_from_chunk(chunk_t chunk, u_int level);
|
||||
/**
|
||||
* Create an empty PKCS#9 attribute list
|
||||
*
|
||||
* @param chunk chunk containing data
|
||||
* @return created pkcs9 attribute list.
|
||||
*/
|
||||
pkcs9_t *pkcs9_create(void);
|
||||
|
||||
#endif /* PKCS9_H_ @} */
|
||||
#endif /** PKCS9_H_ @}*/
|
||||
|
||||
@@ -77,4 +77,4 @@ struct prf_plus_t {
|
||||
*/
|
||||
prf_plus_t *prf_plus_create(prf_t *prf, chunk_t seed);
|
||||
|
||||
#endif /*PRF_PLUS_H_ @} */
|
||||
#endif /** PRF_PLUS_H_ @}*/
|
||||
|
||||
@@ -115,4 +115,4 @@ struct prf_t {
|
||||
void (*destroy) (prf_t *this);
|
||||
};
|
||||
|
||||
#endif /*PRF_H_ @} */
|
||||
#endif /** PRF_H_ @}*/
|
||||
|
||||
@@ -72,4 +72,4 @@ struct rng_t {
|
||||
void (*destroy) (rng_t *this);
|
||||
};
|
||||
|
||||
#endif /*RNG_H_ @} */
|
||||
#endif /** RNG_H_ @}*/
|
||||
|
||||
@@ -122,4 +122,4 @@ struct signer_t {
|
||||
void (*destroy) (signer_t *this);
|
||||
};
|
||||
|
||||
#endif /*SIGNER_H_ @} */
|
||||
#endif /** SIGNER_H_ @}*/
|
||||
|
||||
@@ -120,4 +120,4 @@ struct database_t {
|
||||
void (*destroy)(database_t *this);
|
||||
};
|
||||
|
||||
#endif /* DATABASE_H_ @}*/
|
||||
#endif /** DATABASE_H_ @}*/
|
||||
|
||||
@@ -70,4 +70,4 @@ struct database_factory_t {
|
||||
*/
|
||||
database_factory_t *database_factory_create();
|
||||
|
||||
#endif /* DATABASE_FACTORY_H_ @}*/
|
||||
#endif /** DATABASE_FACTORY_H_ @}*/
|
||||
|
||||
@@ -60,4 +60,4 @@ extern void (*dbg) (int level, char *fmt, ...);
|
||||
/** default logging function, prints to stderr */
|
||||
void dbg_default(int level, char *fmt, ...);
|
||||
|
||||
#endif /* DEBUG_H_ @} */
|
||||
#endif /** DEBUG_H_ @}*/
|
||||
|
||||
@@ -117,4 +117,4 @@ struct enum_name_t {
|
||||
int enum_printf_hook(char *dst, size_t len, printf_hook_spec_t *spec,
|
||||
const void *const *args);
|
||||
|
||||
#endif /* ENUM_H_ @}*/
|
||||
#endif /** ENUM_H_ @}*/
|
||||
|
||||
@@ -102,4 +102,4 @@ struct fetcher_t {
|
||||
void (*destroy)(fetcher_t *this);
|
||||
};
|
||||
|
||||
#endif /* FETCHER_H_ @}*/
|
||||
#endif /** FETCHER_H_ @}*/
|
||||
|
||||
@@ -71,4 +71,4 @@ struct fetcher_manager_t {
|
||||
*/
|
||||
fetcher_manager_t *fetcher_manager_create();
|
||||
|
||||
#endif /* FETCHER_MANAGER_H_ @}*/
|
||||
#endif /** FETCHER_MANAGER_H_ @}*/
|
||||
|
||||
@@ -43,4 +43,4 @@ bool fips_compute_hmac_signature(const char *key, char *signature);
|
||||
*/
|
||||
bool fips_verify_hmac_signature(const char *key, const char *signature);
|
||||
|
||||
#endif /*FIPS_H_ @} */
|
||||
#endif /** FIPS_H_ @}*/
|
||||
|
||||
@@ -132,4 +132,4 @@ void library_deinit();
|
||||
*/
|
||||
extern library_t *lib;
|
||||
|
||||
#endif /* LIBRARY_H_ @}*/
|
||||
#endif /** LIBRARY_H_ @}*/
|
||||
|
||||
@@ -47,4 +47,4 @@ struct aes_crypter_t {
|
||||
aes_crypter_t *aes_crypter_create(encryption_algorithm_t algo,
|
||||
size_t key_size);
|
||||
|
||||
#endif /* AES_CRYPTER_H_ @}*/
|
||||
#endif /** AES_CRYPTER_H_ @}*/
|
||||
|
||||
@@ -44,4 +44,4 @@ struct aes_plugin_t {
|
||||
*/
|
||||
plugin_t *plugin_create();
|
||||
|
||||
#endif /* AES_PLUGIN_H_ @}*/
|
||||
#endif /** AES_PLUGIN_H_ @}*/
|
||||
|
||||
@@ -44,4 +44,4 @@ struct agent_plugin_t {
|
||||
*/
|
||||
plugin_t *plugin_create();
|
||||
|
||||
#endif /* AGENT_PLUGIN_H_ @}*/
|
||||
#endif /** AGENT_PLUGIN_H_ @}*/
|
||||
|
||||
@@ -44,5 +44,5 @@ struct agent_private_key_t {
|
||||
*/
|
||||
builder_t *agent_private_key_builder(key_type_t type);
|
||||
|
||||
#endif /*AGENT_PRIVATE_KEY_H_ @}*/
|
||||
#endif /** AGENT_PRIVATE_KEY_H_ @}*/
|
||||
|
||||
|
||||
@@ -44,4 +44,4 @@ struct curl_fetcher_t {
|
||||
*/
|
||||
curl_fetcher_t *curl_fetcher_create();
|
||||
|
||||
#endif /* CURL_FETCHER_H_ @}*/
|
||||
#endif /** CURL_FETCHER_H_ @}*/
|
||||
|
||||
@@ -44,4 +44,4 @@ struct curl_plugin_t {
|
||||
*/
|
||||
plugin_t *plugin_create();
|
||||
|
||||
#endif /* CURL_PLUGIN_H_ @}*/
|
||||
#endif /** CURL_PLUGIN_H_ @}*/
|
||||
|
||||
@@ -46,4 +46,4 @@ struct des_crypter_t {
|
||||
des_crypter_t *des_crypter_create(encryption_algorithm_t algo);
|
||||
|
||||
|
||||
#endif /* DES_CRYPTER_H_ @}*/
|
||||
#endif /** DES_CRYPTER_H_ @}*/
|
||||
|
||||
@@ -44,4 +44,4 @@ struct des_plugin_t {
|
||||
*/
|
||||
plugin_t *plugin_create();
|
||||
|
||||
#endif /* DES_PLUGIN_H_ @}*/
|
||||
#endif /** DES_PLUGIN_H_ @}*/
|
||||
|
||||
@@ -56,4 +56,4 @@ struct fips_prf_t {
|
||||
*/
|
||||
fips_prf_t *fips_prf_create(pseudo_random_function_t algo);
|
||||
|
||||
#endif /* FIPS_PRF_H_ @}*/
|
||||
#endif /** FIPS_PRF_H_ @}*/
|
||||
|
||||
@@ -44,4 +44,4 @@ struct fips_prf_plugin_t {
|
||||
*/
|
||||
plugin_t *plugin_create();
|
||||
|
||||
#endif /* FIPS_PRF_PLUGIN_H_ @}*/
|
||||
#endif /** FIPS_PRF_PLUGIN_H_ @}*/
|
||||
|
||||
@@ -45,5 +45,5 @@ struct gmp_diffie_hellman_t {
|
||||
*/
|
||||
gmp_diffie_hellman_t *gmp_diffie_hellman_create(diffie_hellman_group_t group);
|
||||
|
||||
#endif /*GMP_DIFFIE_HELLMAN_H_ @}*/
|
||||
#endif /** GMP_DIFFIE_HELLMAN_H_ @}*/
|
||||
|
||||
|
||||
@@ -44,4 +44,4 @@ struct gmp_plugin_t {
|
||||
*/
|
||||
plugin_t *plugin_create();
|
||||
|
||||
#endif /* GMP_PLUGIN_H_ @}*/
|
||||
#endif /** GMP_PLUGIN_H_ @}*/
|
||||
|
||||
@@ -44,5 +44,5 @@ struct gmp_rsa_private_key_t {
|
||||
*/
|
||||
builder_t *gmp_rsa_private_key_builder(key_type_t type);
|
||||
|
||||
#endif /*GMP_RSA_PRIVATE_KEY_H_ @}*/
|
||||
#endif /** GMP_RSA_PRIVATE_KEY_H_ @}*/
|
||||
|
||||
|
||||
@@ -47,4 +47,4 @@ struct gmp_rsa_public_key_t {
|
||||
*/
|
||||
builder_t *gmp_rsa_public_key_builder(key_type_t type);
|
||||
|
||||
#endif /*GMP_RSA_PUBLIC_KEY_H_ @}*/
|
||||
#endif /** GMP_RSA_PUBLIC_KEY_H_ @}*/
|
||||
|
||||
@@ -90,4 +90,4 @@ struct hmac_t {
|
||||
*/
|
||||
hmac_t *hmac_create(hash_algorithm_t hash_algorithm);
|
||||
|
||||
#endif /*HMAC_H_ @}*/
|
||||
#endif /** HMAC_H_ @}*/
|
||||
|
||||
@@ -44,4 +44,4 @@ struct hmac_plugin_t {
|
||||
*/
|
||||
plugin_t *plugin_create();
|
||||
|
||||
#endif /* HMAC_PLUGIN_H_ @}*/
|
||||
#endif /** HMAC_PLUGIN_H_ @}*/
|
||||
|
||||
@@ -48,4 +48,4 @@ struct hmac_prf_t {
|
||||
*/
|
||||
hmac_prf_t *hmac_prf_create(pseudo_random_function_t algo);
|
||||
|
||||
#endif /*PRF_HMAC_SHA1_H_ @}*/
|
||||
#endif /** PRF_HMAC_SHA1_H_ @}*/
|
||||
|
||||
@@ -52,4 +52,4 @@ struct hmac_signer_t {
|
||||
*/
|
||||
hmac_signer_t *hmac_signer_create(integrity_algorithm_t algo);
|
||||
|
||||
#endif /*HMAC_SIGNER_H_ @}*/
|
||||
#endif /** HMAC_SIGNER_H_ @}*/
|
||||
|
||||
@@ -39,4 +39,4 @@ struct ldap_fetcher_t {
|
||||
*/
|
||||
ldap_fetcher_t *ldap_fetcher_create();
|
||||
|
||||
#endif /* LDAP_FETCHER_H_ @}*/
|
||||
#endif /** LDAP_FETCHER_H_ @}*/
|
||||
|
||||
@@ -44,4 +44,4 @@ struct ldap_plugin_t {
|
||||
*/
|
||||
plugin_t *plugin_create();
|
||||
|
||||
#endif /* LDAP_PLUGIN_H_ @}*/
|
||||
#endif /** LDAP_PLUGIN_H_ @}*/
|
||||
|
||||
@@ -45,4 +45,4 @@ struct md4_hasher_t {
|
||||
*/
|
||||
md4_hasher_t *md4_hasher_create(hash_algorithm_t algo);
|
||||
|
||||
#endif /*MD4_HASHER_H_@}*/
|
||||
#endif /** MD4_HASHER_H_ @}*/
|
||||
|
||||
@@ -44,4 +44,4 @@ struct md4_plugin_t {
|
||||
*/
|
||||
plugin_t *plugin_create();
|
||||
|
||||
#endif /* MD4_PLUGIN_H_ @}*/
|
||||
#endif /** MD4_PLUGIN_H_ @}*/
|
||||
|
||||
@@ -45,4 +45,4 @@ struct md5_hasher_t {
|
||||
*/
|
||||
md5_hasher_t *md5_hasher_create(hash_algorithm_t algo);
|
||||
|
||||
#endif /*MD5_HASHER_H_@}*/
|
||||
#endif /** MD5_HASHER_H_ @}*/
|
||||
|
||||
@@ -44,4 +44,4 @@ struct md5_plugin_t {
|
||||
*/
|
||||
plugin_t *plugin_create();
|
||||
|
||||
#endif /* MD5_PLUGIN_H_ @}*/
|
||||
#endif /** MD5_PLUGIN_H_ @}*/
|
||||
|
||||
@@ -39,7 +39,7 @@ struct mysql_database_t {
|
||||
/**
|
||||
* Create a mysql_database instance.
|
||||
*
|
||||
* @param uri connection URI, mysql://user:pass@host:port/database
|
||||
* @param uri connection URI, mysql://user:pass@example.com:port/database
|
||||
*/
|
||||
mysql_database_t *mysql_database_create(char *uri);
|
||||
|
||||
@@ -55,4 +55,4 @@ bool mysql_database_init();
|
||||
*/
|
||||
void mysql_database_deinit();
|
||||
|
||||
#endif /* MYSQL_DATABASE_H_ @}*/
|
||||
#endif /** MYSQL_DATABASE_H_ @}*/
|
||||
|
||||
@@ -44,4 +44,4 @@ struct mysql_plugin_t {
|
||||
*/
|
||||
plugin_t *plugin_create();
|
||||
|
||||
#endif /* MYSQL_PLUGIN_H_ @}*/
|
||||
#endif /** MYSQL_PLUGIN_H_ @}*/
|
||||
|
||||
@@ -48,4 +48,4 @@ struct openssl_crypter_t {
|
||||
openssl_crypter_t *openssl_crypter_create(encryption_algorithm_t algo,
|
||||
size_t key_size);
|
||||
|
||||
#endif /* OPENSSL_CRYPTER_H_ @}*/
|
||||
#endif /** OPENSSL_CRYPTER_H_ @}*/
|
||||
|
||||
@@ -46,5 +46,5 @@ struct openssl_diffie_hellman_t {
|
||||
*/
|
||||
openssl_diffie_hellman_t *openssl_diffie_hellman_create(diffie_hellman_group_t group);
|
||||
|
||||
#endif /*OPENSSL_DIFFIE_HELLMAN_H_ @}*/
|
||||
#endif /** OPENSSL_DIFFIE_HELLMAN_H_ @}*/
|
||||
|
||||
|
||||
@@ -46,5 +46,5 @@ struct openssl_ec_diffie_hellman_t {
|
||||
*/
|
||||
openssl_ec_diffie_hellman_t *openssl_ec_diffie_hellman_create(diffie_hellman_group_t group);
|
||||
|
||||
#endif /*OPENSSL_EC_DIFFIE_HELLMAN_H_ @}*/
|
||||
#endif /** OPENSSL_EC_DIFFIE_HELLMAN_H_ @}*/
|
||||
|
||||
|
||||
@@ -46,4 +46,4 @@ struct openssl_ec_private_key_t {
|
||||
*/
|
||||
builder_t *openssl_ec_private_key_builder(key_type_t type);
|
||||
|
||||
#endif /*OPENSSL_EC_PRIVATE_KEY_H_ @}*/
|
||||
#endif /** OPENSSL_EC_PRIVATE_KEY_H_ @}*/
|
||||
|
||||
@@ -46,4 +46,4 @@ struct openssl_ec_public_key_t {
|
||||
*/
|
||||
builder_t *openssl_ec_public_key_builder(key_type_t type);
|
||||
|
||||
#endif /*OPENSSL_EC_PUBLIC_KEY_H_ @}*/
|
||||
#endif /** OPENSSL_EC_PUBLIC_KEY_H_ @}*/
|
||||
|
||||
@@ -42,9 +42,8 @@ struct openssl_hasher_t {
|
||||
* Constructor to create openssl_hasher_t.
|
||||
*
|
||||
* @param algo algorithm
|
||||
* @param key_size key size in bytes
|
||||
* @return openssl_hasher_t, NULL if not supported
|
||||
*/
|
||||
openssl_hasher_t *openssl_hasher_create(hash_algorithm_t algo);
|
||||
|
||||
#endif /* OPENSSL_HASHER_H_ @}*/
|
||||
#endif /** OPENSSL_HASHER_H_ @}*/
|
||||
|
||||
@@ -46,4 +46,4 @@ struct openssl_plugin_t {
|
||||
*/
|
||||
plugin_t *plugin_create();
|
||||
|
||||
#endif /* OPENSSL_PLUGIN_H_ @}*/
|
||||
#endif /** OPENSSL_PLUGIN_H_ @}*/
|
||||
|
||||
@@ -46,4 +46,4 @@ struct openssl_rsa_private_key_t {
|
||||
*/
|
||||
builder_t *openssl_rsa_private_key_builder(key_type_t type);
|
||||
|
||||
#endif /*OPENSSL_RSA_PRIVATE_KEY_H_ @}*/
|
||||
#endif /** OPENSSL_RSA_PRIVATE_KEY_H_ @}*/
|
||||
|
||||
@@ -46,4 +46,4 @@ struct openssl_rsa_public_key_t {
|
||||
*/
|
||||
builder_t *openssl_rsa_public_key_builder(key_type_t type);
|
||||
|
||||
#endif /*OPENSSL_RSA_PUBLIC_KEY_H_ @}*/
|
||||
#endif /** OPENSSL_RSA_PUBLIC_KEY_H_ @}*/
|
||||
|
||||
@@ -67,4 +67,4 @@ bool openssl_bn_cat(int len, BIGNUM *a, BIGNUM *b, chunk_t *chunk);
|
||||
*/
|
||||
bool openssl_bn_split(chunk_t chunk, BIGNUM *a, BIGNUM *b);
|
||||
|
||||
#endif /*OPENSSL_UTIL_H_ @}*/
|
||||
#endif /** OPENSSL_UTIL_H_ @}*/
|
||||
|
||||
@@ -47,4 +47,4 @@ struct padlock_aes_crypter_t {
|
||||
padlock_aes_crypter_t *padlock_aes_crypter_create(encryption_algorithm_t algo,
|
||||
size_t key_size);
|
||||
|
||||
#endif /* PADLOCK_AES_CRYPTER_H_ @}*/
|
||||
#endif /** PADLOCK_AES_CRYPTER_H_ @}*/
|
||||
|
||||
@@ -44,4 +44,4 @@ struct padlock_plugin_t {
|
||||
*/
|
||||
plugin_t *plugin_create();
|
||||
|
||||
#endif /* PADLOCK_PLUGIN_H_ @}*/
|
||||
#endif /** PADLOCK_PLUGIN_H_ @}*/
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
|
||||
/**
|
||||
* @defgroup padlock_rng padlock_rng
|
||||
* @{ @ingroup padlock
|
||||
* @{ @ingroup padlock_p
|
||||
*/
|
||||
|
||||
#ifndef PADLOCK_RNG_H_
|
||||
@@ -46,4 +46,4 @@ struct padlock_rng_t {
|
||||
*/
|
||||
padlock_rng_t *padlock_rng_create(rng_quality_t quality);
|
||||
|
||||
#endif /* PADLOCK_RNG_ @}*/
|
||||
#endif /** PADLOCK_RNG_ @}*/
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
/**
|
||||
* @defgroup sha1_hasher sha1_hasher
|
||||
* @{ @ingroup sha1_p
|
||||
* @{ @ingroup padlock_p
|
||||
*/
|
||||
|
||||
#ifndef PADLOCK_SHA1_HASHER_H_
|
||||
@@ -45,4 +45,4 @@ struct padlock_sha1_hasher_t {
|
||||
*/
|
||||
padlock_sha1_hasher_t *padlock_sha1_hasher_create(hash_algorithm_t algo);
|
||||
|
||||
#endif /*SHA1_HASHER_H_ @}*/
|
||||
#endif /** SHA1_HASHER_H_ @}*/
|
||||
|
||||
@@ -46,4 +46,4 @@ struct plugin_t {
|
||||
*/
|
||||
typedef plugin_t *(*plugin_constructor_t)(void);
|
||||
|
||||
#endif /* PLUGIN_H_ @}*/
|
||||
#endif /** PLUGIN_H_ @}*/
|
||||
|
||||
@@ -64,4 +64,4 @@ struct plugin_loader_t {
|
||||
*/
|
||||
plugin_loader_t *plugin_loader_create();
|
||||
|
||||
#endif /* PLUGIN_LOADER_H_ @}*/
|
||||
#endif /** PLUGIN_LOADER_H_ @}*/
|
||||
|
||||
@@ -48,4 +48,4 @@ struct pubkey_cert_t {
|
||||
*/
|
||||
builder_t *pubkey_cert_builder(certificate_type_t type);
|
||||
|
||||
#endif /* PUBKEY_CERT_H_ @}*/
|
||||
#endif /** PUBKEY_CERT_H_ @}*/
|
||||
|
||||
@@ -44,4 +44,4 @@ struct pubkey_plugin_t {
|
||||
*/
|
||||
plugin_t *plugin_create();
|
||||
|
||||
#endif /* PUBKEY_PLUGIN_H_ @}*/
|
||||
#endif /** PUBKEY_PLUGIN_H_ @}*/
|
||||
|
||||
@@ -33,4 +33,4 @@
|
||||
*/
|
||||
builder_t *pubkey_public_key_builder(key_type_t type);
|
||||
|
||||
#endif /*PUBKEY_RSA_PUBLIC_KEY_H_ @}*/
|
||||
#endif /** PUBKEY_RSA_PUBLIC_KEY_H_ @}*/
|
||||
|
||||
@@ -44,4 +44,4 @@ struct random_plugin_t {
|
||||
*/
|
||||
plugin_t *plugin_create();
|
||||
|
||||
#endif /* RANDOM_PLUGIN_H_ @}*/
|
||||
#endif /** RANDOM_PLUGIN_H_ @}*/
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
|
||||
/**
|
||||
* @defgroup random_rng random_rng
|
||||
* @{ @ingroup utils
|
||||
* @{ @ingroup random_p
|
||||
*/
|
||||
|
||||
#ifndef RANDOM_RNG_H_
|
||||
@@ -46,4 +46,4 @@ struct random_rng_t {
|
||||
*/
|
||||
random_rng_t *random_rng_create(rng_quality_t quality);
|
||||
|
||||
#endif /*RANDOM_RNG_H_ @} */
|
||||
#endif /** RANDOM_RNG_H_ @} */
|
||||
|
||||
@@ -45,4 +45,4 @@ struct sha1_hasher_t {
|
||||
*/
|
||||
sha1_hasher_t *sha1_hasher_create(hash_algorithm_t algo);
|
||||
|
||||
#endif /*SHA1_HASHER_H_ @}*/
|
||||
#endif /** SHA1_HASHER_H_ @}*/
|
||||
|
||||
@@ -44,4 +44,4 @@ struct sha1_plugin_t {
|
||||
*/
|
||||
plugin_t *plugin_create();
|
||||
|
||||
#endif /* SHA1_PLUGIN_H_ @}*/
|
||||
#endif /** SHA1_PLUGIN_H_ @}*/
|
||||
|
||||
@@ -44,4 +44,4 @@ struct sha1_prf_t {
|
||||
*/
|
||||
sha1_prf_t *sha1_prf_create(pseudo_random_function_t algo);
|
||||
|
||||
#endif /*SHA1_PRF_H_ @}*/
|
||||
#endif /** SHA1_PRF_H_ @}*/
|
||||
|
||||
@@ -47,4 +47,4 @@ struct sha2_hasher_t {
|
||||
*/
|
||||
sha2_hasher_t *sha2_hasher_create(hash_algorithm_t algorithm);
|
||||
|
||||
#endif /* SHA2_HASHER_H_ @}*/
|
||||
#endif /** SHA2_HASHER_H_ @}*/
|
||||
|
||||
@@ -44,4 +44,4 @@ struct sha2_plugin_t {
|
||||
*/
|
||||
plugin_t *plugin_create();
|
||||
|
||||
#endif /* SHA2_PLUGIN_H_ @}*/
|
||||
#endif /** SHA2_PLUGIN_H_ @}*/
|
||||
|
||||
@@ -43,4 +43,4 @@ struct sqlite_database_t {
|
||||
*/
|
||||
sqlite_database_t *sqlite_database_create(char *uri);
|
||||
|
||||
#endif /* SQLITE_DATABASE_H_ @}*/
|
||||
#endif /** SQLITE_DATABASE_H_ @}*/
|
||||
|
||||
@@ -44,4 +44,4 @@ struct sqlite_plugin_t {
|
||||
*/
|
||||
plugin_t *plugin_create();
|
||||
|
||||
#endif /* SQLITE_PLUGIN_H_ @}*/
|
||||
#endif /** SQLITE_PLUGIN_H_ @}*/
|
||||
|
||||
@@ -77,5 +77,5 @@ chunk_t ietfAttr_list_encode(linked_list_t *list);
|
||||
*/
|
||||
void ietfAttr_list_destroy(linked_list_t *list);
|
||||
|
||||
#endif /* IETF_ATTR_LIST_H_ @}*/
|
||||
#endif /** IETF_ATTR_LIST_H_ @}*/
|
||||
|
||||
|
||||
@@ -56,4 +56,4 @@ struct x509_ac_t {
|
||||
*/
|
||||
builder_t *x509_ac_builder(certificate_type_t type);
|
||||
|
||||
#endif /* X509_AC_H_ @}*/
|
||||
#endif /** X509_AC_H_ @}*/
|
||||
|
||||
@@ -46,4 +46,4 @@ struct x509_cert_t {
|
||||
*/
|
||||
builder_t *x509_cert_builder(certificate_type_t type);
|
||||
|
||||
#endif /* X509_CERT_H_ @}*/
|
||||
#endif /** X509_CERT_H_ @}*/
|
||||
|
||||
@@ -45,4 +45,4 @@ struct x509_crl_t {
|
||||
*/
|
||||
builder_t *x509_crl_builder(certificate_type_t type);
|
||||
|
||||
#endif /* X509_CRL_H_ @}*/
|
||||
#endif /** X509_CRL_H_ @}*/
|
||||
|
||||
@@ -51,4 +51,4 @@ struct x509_ocsp_request_t {
|
||||
*/
|
||||
builder_t *x509_ocsp_request_builder(certificate_type_t type);
|
||||
|
||||
#endif /* X509_OCSP_REQUEST_H_ @}*/
|
||||
#endif /** X509_OCSP_REQUEST_H_ @}*/
|
||||
|
||||
@@ -44,4 +44,4 @@ struct x509_ocsp_response_t {
|
||||
*/
|
||||
builder_t *x509_ocsp_response_builder(certificate_type_t type);
|
||||
|
||||
#endif /* X509_OCSP_RESPONSE_H_ @}*/
|
||||
#endif /** X509_OCSP_RESPONSE_H_ @}*/
|
||||
|
||||
@@ -44,4 +44,4 @@ struct x509_plugin_t {
|
||||
*/
|
||||
plugin_t *plugin_create();
|
||||
|
||||
#endif /* X509_PLUGIN_H_ @}*/
|
||||
#endif /** X509_PLUGIN_H_ @}*/
|
||||
|
||||
@@ -75,4 +75,4 @@ struct xcbc_t {
|
||||
*/
|
||||
xcbc_t *xcbc_create(encryption_algorithm_t algo, size_t key_size);
|
||||
|
||||
#endif /*xcbc_H_ @}*/
|
||||
#endif /** XCBC_H_ @}*/
|
||||
|
||||
@@ -44,4 +44,4 @@ struct xcbc_plugin_t {
|
||||
*/
|
||||
plugin_t *plugin_create();
|
||||
|
||||
#endif /* XCBC_PLUGIN_H_ @}*/
|
||||
#endif /** XCBC_PLUGIN_H_ @}*/
|
||||
|
||||
@@ -47,4 +47,4 @@ struct xcbc_prf_t {
|
||||
*/
|
||||
xcbc_prf_t *xcbc_prf_create(pseudo_random_function_t algo);
|
||||
|
||||
#endif /*PRF_XCBC_SHA1_H_ @}*/
|
||||
#endif /** PRF_XCBC_SHA1_H_ @}*/
|
||||
|
||||
@@ -18,8 +18,8 @@
|
||||
* @{ @ingroup xcbc_p
|
||||
*/
|
||||
|
||||
#ifndef xcbc_SIGNER_H_
|
||||
#define xcbc_SIGNER_H_
|
||||
#ifndef XCBC_SIGNER_H_
|
||||
#define XCBC_SIGNER_H_
|
||||
|
||||
typedef struct xcbc_signer_t xcbc_signer_t;
|
||||
|
||||
@@ -44,4 +44,4 @@ struct xcbc_signer_t {
|
||||
*/
|
||||
xcbc_signer_t *xcbc_signer_create(integrity_algorithm_t algo);
|
||||
|
||||
#endif /*xcbc_SIGNER_H_ @}*/
|
||||
#endif /** XCBC_SIGNER_H_ @}*/
|
||||
|
||||
@@ -150,4 +150,4 @@ struct printf_hook_t {
|
||||
*/
|
||||
printf_hook_t *printf_hook_create();
|
||||
|
||||
#endif /* PRINTF_HOOK_H_ @}*/
|
||||
#endif /** PRINTF_HOOK_H_ @}*/
|
||||
|
||||
@@ -116,4 +116,4 @@ struct settings_t {
|
||||
*/
|
||||
settings_t *settings_create(char *file);
|
||||
|
||||
#endif /* SETTINGS_H_ @}*/
|
||||
#endif /** SETTINGS_H_ @}*/
|
||||
|
||||
@@ -311,4 +311,4 @@ int time_delta_printf_hook(char *dst, size_t len, printf_hook_spec_t *spec,
|
||||
int mem_printf_hook(char *dst, size_t len, printf_hook_spec_t *spec,
|
||||
const void *const *args);
|
||||
|
||||
#endif /* UTILS_H_ @}*/
|
||||
#endif /** UTILS_H_ @}*/
|
||||
|
||||
@@ -59,5 +59,4 @@ struct backtrace_t {
|
||||
*/
|
||||
backtrace_t *backtrace_create(int skip);
|
||||
|
||||
#endif /* BACKTRACE_H_ @}*/
|
||||
|
||||
#endif /** BACKTRACE_H_ @}*/
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user