repo.or.cz
/
kbuild-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Built win.arm64 against r3658
[kbuild-mirror.git]
/
src
/
lib
/
md5.h
blob
227d31a4566880a4572c7f38fa4a8087dd408af9
1
#ifndef MD5_H
2
#define MD5_H
3
4
#include
"mytypes.h"
5
6
struct
MD5Context
{
7
uint32_t
buf
[
4
];
8
uint32_t
bits
[
2
];
9
unsigned char
in
[
64
];
10
};
11
12
void
MD5Init
(
struct
MD5Context
*);
13
void
MD5Update
(
struct
MD5Context
*,
const unsigned char
*,
unsigned
);
14
void
MD5Final
(
unsigned char
digest
[
16
],
struct
MD5Context
*);
15
void
MD5Transform
(
uint32_t
buf
[
4
],
uint32_t
in
[
16
]);
16
17
#endif
/* !MD5_H */