summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/md5.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libalpm/md5.h')
-rw-r--r--lib/libalpm/md5.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/lib/libalpm/md5.h b/lib/libalpm/md5.h
index 7af70749..4adc8a88 100644
--- a/lib/libalpm/md5.h
+++ b/lib/libalpm/md5.h
@@ -40,30 +40,6 @@ typedef struct
md5_context;
/**
- * \brief MD5 context setup
- *
- * \param ctx context to be initialized
- */
-void md5_starts( md5_context *ctx );
-
-/**
- * \brief MD5 process buffer
- *
- * \param ctx MD5 context
- * \param input buffer holding the data
- * \param ilen length of the input data
- */
-void md5_update( md5_context *ctx, unsigned char *input, int ilen );
-
-/**
- * \brief MD5 final digest
- *
- * \param ctx MD5 context
- * \param output MD5 checksum result
- */
-void md5_finish( md5_context *ctx, unsigned char *output );
-
-/**
* \brief Output = MD5( input buffer )
*
* \param input buffer holding the data