remove deprecated luminance texture generation
[voxelands-alt.git] / inc / crypto.h
blob11c398244e25176817ed16f4023daebd0a831d08
1 #ifndef _CRYPTO_H_
2 #define _CRYPTO_H_
4 #include <stdint.h>
6 uint32_t sum(char* str);
7 uint32_t hash(char* str);
8 char* base64_encode(char* str);
9 char* base64_decode(char* str);
11 #endif