Created SILC Runtime Toolkit git repository Part II.
[runtime.git] / lib / silcutil / silcstrutil.h
index 0860bb3a942c2ecc1a4ceb3f3a9abc933f139cd6..2caeb4c7f50b4eff9c1d4c6c140e3e58d80fd79f 100644 (file)
@@ -21,9 +21,7 @@
  *
  * DESCRIPTION
  *
- * String manipulation utility routines.  These routines provides
- * various helper functions for encoding, decoding and otherwise
- * managing strings.
+ * Various string utility routines.
  *
  ***/
 
@@ -67,51 +65,6 @@ typedef enum {
 } SilcStringEncoding;
 /***/
 
-/****f* silcutil/SilcStrUtilAPI/silc_base64_encode
- *
- * SYNOPSIS
- *
- *    char *silc_base64_encode(unsigned char *data, SilcUInt32 len);
- *
- * DESCRIPTION
- *
- *    Encodes data into Base 64 (PEM) encoding. Returns NULL terminated
- *    Base 64 encoded data string.
- *
- ***/
-char *silc_base64_encode(unsigned char *data, SilcUInt32 len);
-
-/****f* silcutil/SilcStrUtilAPI/silc_base64_encode_file
- *
- * SYNOPSIS
- *
- *    char *silc_base64_encode_file(unsigned char *data, SilcUInt32 data_len);
- *
- * DESCRIPTION
- *
- *    Same as silc_base64_encode() but puts newline ('\n') every 72
- *    characters.
- *
- ***/
-char *silc_base64_encode_file(unsigned char *data, SilcUInt32 data_len);
-
-/****f* silcutil/SilcStrUtilAPI/silc_base_decode
- *
- * SYNOPSIS
- *
- *    unsigned char *silc_base_decode(unsigned char *base64,
- *                                    SilcUInt32 base64_len,
- *                                    SilcUInt32 *ret_len);
- *
- * DESCRIPTION
- *
- *    Decodes Base 64 (PEM) into data. Returns the decoded data.
- *
- ***/
-unsigned char *silc_base64_decode(unsigned char *base64,
-                                 SilcUInt32 base64_len,
-                                 SilcUInt32 *ret_len);
-
 /****f* silcutil/SilcStrStrUtilAPI/silc_strncat
  *
  * SYNOPSIS
@@ -144,19 +97,6 @@ char *silc_strncat(char *dest, SilcUInt32 dest_size,
  ***/
 char *silc_string_regexify(const char *string);
 
-/****f* silcutil/SilcStrUtilAPI/silc_string_regex_match
- *
- * SYNOPSIS
- *
- *    int silc_string_regex_match(const char *regex, const char *string);
- *
- * DESCRIPTION
- *
- *    Matches the two strings and returns TRUE if the strings match.
- *
- ***/
-int silc_string_regex_match(const char *regex, const char *string);
-
 /****f* silcutil/SilcStrUtilAPI/silc_string_match
  *
  * SYNOPSIS