aboutsummaryrefslogtreecommitdiffstats
path: root/src/codec/pem
diff options
context:
space:
mode:
authorlloyd <[email protected]>2012-07-09 19:36:23 +0000
committerlloyd <[email protected]>2012-07-09 19:36:23 +0000
commite20279e07b37f9cff036b6e4bd6e11532de0f363 (patch)
treeef3ba8c2dbe9ec216f39a090b1b1e7353f171e03 /src/codec/pem
parentf598db001a535d88d603d954df8532a4020a3cfe (diff)
Doxygen warning fixes
Diffstat (limited to 'src/codec/pem')
-rw-r--r--src/codec/pem/pem.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/codec/pem/pem.h b/src/codec/pem/pem.h
index 24da1448a..a0c6f74aa 100644
--- a/src/codec/pem/pem.h
+++ b/src/codec/pem/pem.h
@@ -44,6 +44,7 @@ inline std::string encode(const secure_vector<byte>& data,
/**
* Decode PEM data
+* @param pem a datasource containing PEM encoded data
* @param label is set to the PEM label found for later inspection
*/
BOTAN_DLL secure_vector<byte> decode(DataSource& pem,
@@ -51,6 +52,7 @@ BOTAN_DLL secure_vector<byte> decode(DataSource& pem,
/**
* Decode PEM data
+* @param pem a string containing PEM encoded data
* @param label is set to the PEM label found for later inspection
*/
BOTAN_DLL secure_vector<byte> decode(const std::string& pem,
@@ -58,6 +60,7 @@ BOTAN_DLL secure_vector<byte> decode(const std::string& pem,
/**
* Decode PEM data
+* @param pem a datasource containing PEM encoded data
* @param label is what we expect the label to be
*/
BOTAN_DLL secure_vector<byte> decode_check_label(
@@ -66,6 +69,7 @@ BOTAN_DLL secure_vector<byte> decode_check_label(
/**
* Decode PEM data
+* @param pem a string containing PEM encoded data
* @param label is what we expect the label to be
*/
BOTAN_DLL secure_vector<byte> decode_check_label(