repo.or.cz
/
voxelands-alt.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
better texture binding
[voxelands-alt.git]
/
inc
/
crypto.h
blob
11c398244e25176817ed16f4023daebd0a831d08
1
#ifndef _CRYPTO_H_
2
#define _CRYPTO_H_
3
4
#include <stdint.h>
5
6
uint32_t
sum
(
char
*
str
);
7
uint32_t
hash
(
char
*
str
);
8
char
*
base64_encode
(
char
*
str
);
9
char
*
base64_decode
(
char
*
str
);
10
11
#endif