raop: Add a MD5 hashing fuction

MD5 hashing will be needed during the authentication process.

Original patch by Martin Blanchard. Patch splitted by
Hajime Fujita <crisp.fujita@nifty.com>.
This commit is contained in:
Martin Blanchard 2016-11-06 12:54:05 -06:00 committed by Tanu Kaskinen
parent bac8a2ba66
commit a33c04c0cc
2 changed files with 29 additions and 0 deletions

View file

@ -30,4 +30,6 @@
int pa_raop_base64_encode(const void *data, int len, char **str);
int pa_raop_base64_decode(const char *str, void *data);
int pa_raop_md5_hash(const char *data, int len, char **str);
#endif