aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/x509/x509_ca.h
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-12-26 11:32:44 -0500
committerJack Lloyd <[email protected]>2017-12-26 11:32:44 -0500
commitd12b1369126f697402dee1cc4ab75f5bdad6fabf (patch)
tree725aca8c4a3909e082124eaf18acdaea23a66200 /src/lib/x509/x509_ca.h
parent010fc707ebe4ba8c9d11ff55ddaefe03e4dd5c33 (diff)
Fix a couple Doxygen format errors [ci skip]
Diffstat (limited to 'src/lib/x509/x509_ca.h')
-rw-r--r--src/lib/x509/x509_ca.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/lib/x509/x509_ca.h b/src/lib/x509/x509_ca.h
index 4f1da51fa..bc5323e5b 100644
--- a/src/lib/x509/x509_ca.h
+++ b/src/lib/x509/x509_ca.h
@@ -193,6 +193,7 @@ BOTAN_PUBLIC_API(2,0) PK_Signer* choose_sig_format(const Private_Key& key,
AlgorithmIdentifier& alg_id);
/**
+* @verbatim
* Choose the default signature format for a certain public key signature
* scheme.
*
@@ -200,6 +201,7 @@ BOTAN_PUBLIC_API(2,0) PK_Signer* choose_sig_format(const Private_Key& key,
* Find an entry from src/build-data/oids.txt under [signature] of the form
* <sig_algo>/<padding>[(<hash_algo>)] and add {"padding",<padding>}
* to opts.
+* @endverbatim
*
* @param key will be the key to choose a padding scheme for
* @param opts contains additional options for building the certificate
@@ -208,11 +210,11 @@ BOTAN_PUBLIC_API(2,0) PK_Signer* choose_sig_format(const Private_Key& key,
* @param alg_id will be set to the chosen scheme
* @return A PK_Signer object for generating signatures
*/
- PK_Signer* choose_sig_format(const Private_Key& key,
- const std::map<std::string,std::string>& opts,
- RandomNumberGenerator& rng,
- const std::string& hash_fn,
- AlgorithmIdentifier& alg_id);
+PK_Signer* choose_sig_format(const Private_Key& key,
+ const std::map<std::string,std::string>& opts,
+ RandomNumberGenerator& rng,
+ const std::string& hash_fn,
+ AlgorithmIdentifier& alg_id);
}