Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/zbxcrypto/base64.c')
-rw-r--r--src/libs/zbxcrypto/base64.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/libs/zbxcrypto/base64.c b/src/libs/zbxcrypto/base64.c
index aaea02504f0..9f3d2e22820 100644
--- a/src/libs/zbxcrypto/base64.c
+++ b/src/libs/zbxcrypto/base64.c
@@ -22,8 +22,6 @@
/******************************************************************************
* *
- * Function: is_base64 *
- * *
* Purpose: is the character passed in a base64 character? *
* *
* Parameters: c - character to test *
@@ -50,8 +48,6 @@ static int is_base64(char c)
/******************************************************************************
* *
- * Function: char_base64_encode *
- * *
* Purpose: encode a byte into a base64 character *
* *
* Parameters: uc - character to encode *
@@ -68,8 +64,6 @@ static char char_base64_encode(unsigned char uc)
/******************************************************************************
* *
- * Function: char_base64_decode *
- * *
* Purpose: decode a base64 character into a byte *
* *
* Parameters: c - character to decode *
@@ -104,8 +98,6 @@ static unsigned char char_base64_decode(char c)
/******************************************************************************
* *
- * Function: str_base64_encode *
- * *
* Purpose: encode a string into a base64 string *
* *
* Parameters: p_str - [IN] the string to encode *
@@ -170,8 +162,6 @@ void str_base64_encode(const char *p_str, char *p_b64str, int in_size)
/******************************************************************************
* *
- * Function: str_base64_encode_dyn *
- * *
* Purpose: encode a string into a base64 string *
* with dynamic memory allocation *
* *
@@ -217,8 +207,6 @@ void str_base64_encode_dyn(const char *p_str, char **p_b64str, int in_size)
/******************************************************************************
* *
- * Function: str_base64_decode *
- * *
* Purpose: decode a base64 string into a string *
* *
* Parameters: p_b64str - [IN] the base64 string to decode *