aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-10-28 20:14:07 +0000
committerlloyd <[email protected]>2010-10-28 20:14:07 +0000
commita7a047e6823dcbf23e172dd5c0f9a7b4fd748f10 (patch)
treefed382f4dadec61f7c7969084905c978d2a946a6 /src
parentac9c7ab05844bf8a4add7067a1130b0c7b5b97e9 (diff)
Fix doxygen
Diffstat (limited to 'src')
-rw-r--r--src/filters/codec_filt/b64_filt.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/filters/codec_filt/b64_filt.h b/src/filters/codec_filt/b64_filt.h
index e7cbfae1d..df3896666 100644
--- a/src/filters/codec_filt/b64_filt.h
+++ b/src/filters/codec_filt/b64_filt.h
@@ -67,19 +67,19 @@ class BOTAN_DLL Base64_Decoder : public Filter
void write(const byte input[], size_t length);
/**
- * Inform the Encoder that the current message shall be closed.
+ * Finish up the current message
*/
void end_msg();
/**
- * Create a base64 encoder.
+ * Create a base64 decoder.
* @param checking the type of checking that shall be performed by
* the decoder
*/
Base64_Decoder(Decoder_Checking checking = NONE);
private:
static void decode(const byte input[4], byte output[3]);
- static bool is_valid(byte);
+ static bool is_valid(byte c);
void decode_and_send(const byte[], size_t);
void handle_bad_char(byte);