1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
#include <u.h>
#include <libc.h>
#include <oventi.h>
#include <libsec.h>
static void encode(uchar*, u32int*, ulong);
extern void vtSha1Block(u32int *s, uchar *p, ulong len);
struct VtSha1
{
DigestState *s;
};
VtSha1 *
vtSha1Alloc(void)
{
VtSha1 *s;
s = vtMemAlloc(sizeof(VtSha1));
vtSha1Init(s);
return s;
}
void
vtSha1Free(VtSha1 *s)
{
if(s == nil)
return;
if(s->s != nil)
free(s->s);
vtMemFree(s);
}
void
vtSha1Init(VtSha1 *s)
{
s->s = nil;
}
void
vtSha1Update(VtSha1 *s, uchar *p, int len)
{
s->s = sha1(p, len, nil, s->s);
}
void
vtSha1Final(VtSha1 *s, uchar *digest)
{
sha1(nil, 0, digest, s->s);
s->s = nil;
}
void
vtSha1(uchar sha1[VtScoreSize], uchar *p, int n)
{
VtSha1 s;
vtSha1Init(&s);
vtSha1Update(&s, p, n);
vtSha1Final(&s, sha1);
}
int
vtSha1Check(uchar score[VtScoreSize], uchar *p, int n)
{
VtSha1 s;
uchar score2[VtScoreSize];
vtSha1Init(&s);
vtSha1Update(&s, p, n);
vtSha1Final(&s, score2);
if(memcmp(score, score2, VtScoreSize) != 0) {
vtSetError("vtSha1Check failed");
return 0;
}
return 1;
}
|