aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-08-15 08:23:19 -0400
committerJack Lloyd <[email protected]>2018-08-15 08:23:19 -0400
commit5fbd31730725abaece3c869769e079521c72578d (patch)
treeea022bdf150daa5f92824f4fbb4297dde17233e7 /src/lib
parent2817c0afc87b85056edc362c933c3eb3a0799350 (diff)
Fix some Doxygen warnings
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/codec/base64/base64.h4
-rw-r--r--src/lib/math/bigint/bigint.h1
-rw-r--r--src/lib/pubkey/pubkey.h1
3 files changed, 2 insertions, 4 deletions
diff --git a/src/lib/codec/base64/base64.h b/src/lib/codec/base64/base64.h
index 715598e9c..a20d03b0f 100644
--- a/src/lib/codec/base64/base64.h
+++ b/src/lib/codec/base64/base64.h
@@ -67,8 +67,8 @@ std::string base64_encode(const std::vector<uint8_t, Alloc>& input)
exception if whitespace is encountered
* @return number of bytes written to output
*/
-size_t BOTAN_PUBLIC_API(2,0) base64_decode(uint8_t out[],
- const char in[],
+size_t BOTAN_PUBLIC_API(2,0) base64_decode(uint8_t output[],
+ const char input[],
size_t input_length,
size_t& input_consumed,
bool final_inputs,
diff --git a/src/lib/math/bigint/bigint.h b/src/lib/math/bigint/bigint.h
index e7eca06af..0d35cbbeb 100644
--- a/src/lib/math/bigint/bigint.h
+++ b/src/lib/math/bigint/bigint.h
@@ -728,7 +728,6 @@ class BOTAN_PUBLIC_API(2,0) BigInt final
/**
* Create a BigInt from an integer in a byte array
* @param buf the binary value to load
- * @param base number-base of the integer in buf
* @result BigInt representing the integer in the byte array
*/
static BigInt decode(const std::vector<uint8_t>& buf)
diff --git a/src/lib/pubkey/pubkey.h b/src/lib/pubkey/pubkey.h
index 43e1f987a..2e2557ff8 100644
--- a/src/lib/pubkey/pubkey.h
+++ b/src/lib/pubkey/pubkey.h
@@ -472,7 +472,6 @@ class BOTAN_PUBLIC_API(2,0) PK_Key_Agreement final
* Perform Key Agreement Operation
* @param key_len the desired key output size
* @param in the other parties key
- * @param in_len the length of in in bytes
* @param params extra derivation params
* @param params_len the length of params in bytes
*/