chiark
/
gitweb
/
~mdw
/
ezmlm
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Debianization and various other fixes.
[ezmlm]
/
surfpcs.h
1
#ifndef SURFPCS_H
2
#define SURFPCS_H
3
4
#include "uint32.h"
5
6
typedef struct {
7
uint32 seed[32];
8
uint32 sum[8];
9
uint32 out[8];
10
uint32 in[12];
11
int todo;
12
} surfpcs;
13
14
#define SURFPCS_LEN 32
15
16
extern void surfpcs_init();
17
extern void surfpcs_add();
18
extern void surfpcs_out();
19
20
#endif