A modern, network-enabled music player platform built on Rockbox technology. rockboxd.tsiry-sandratraina.com
rust deno navidrome airplay libadwaita zig mpris snapcast mpd rockbox audio subsonic
2

Configure Feed

Select the types of activity you want to include in your feed.

rockboxd / utils / mkamsboot / md5.h
414 B 25 lines
1#ifndef _MD5_H 2#define _MD5_H 3 4#ifndef uint8 5#define uint8 unsigned char 6#endif 7 8#ifndef uint32 9#define uint32 unsigned long int 10#endif 11 12typedef struct 13{ 14 uint32 total[2]; 15 uint32 state[4]; 16 uint8 buffer[64]; 17} 18md5_context; 19 20void md5_starts( md5_context *ctx ); 21void md5_update( md5_context *ctx, uint8 *input, uint32 length ); 22void md5_finish( md5_context *ctx, uint8 digest[16] ); 23 24#endif /* md5.h */ 25