-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcham.h
70 lines (52 loc) · 1.57 KB
/
cham.h
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
#include <stdio.h>
#include <string.h>
#include <openssl/sha.h>
#include <openssl/bn.h>
#include <limits.h>
struct csKeys_SF {
struct hashKey_SF {
BIGNUM *p;
BIGNUM *q;
} CK;
BIGNUM *HK;
};
struct csKeys_DL {
struct hashKey_DL {
BIGNUM *p;
BIGNUM *q;
BIGNUM *g;
BIGNUM *y;
} HK;
BIGNUM *CK;
};
struct csKeys_AF {
struct trapdoor_AF {
BIGNUM *p;
BIGNUM *q;
BIGNUM *lambda;
} CK;
struct hashKey_AF {
BIGNUM *n;
BIGNUM *g;
} HK;
};
int CS_Rnd(BIGNUM *bnN, BIGNUM *bnRnd);
int CS_GenerateAB(BIGNUM *bnP, BIGNUM *bnQ, BIGNUM *bnA, BIGNUM *bnB);
int CS_GenChamKeys_SF(int iSctyPrmtr, struct csKeys_SF *cskChamKeys);
int CS_ChamHash_SF(const unsigned char* pchMsg, BIGNUM *bnRnd, BIGNUM *bnHK,
BIGNUM *bnChamDigest);
int CS_ClsnFind_SF(BIGNUM *bnChamDigest, char* pchMsg,
struct csKeys_SF cskTrapdoor, BIGNUM *bnRandom);
int CS_GenChamKeys_DL(int iSctyPrmtr, struct csKeys_DL *cskChamKeys);
int CS_ChamHash_DL(char* pchMsg, BIGNUM *bnRnd, struct hashKey_DL HK,
BIGNUM *bnChamDigest);
int CS_ClsnFind_DL(BIGNUM *bnRandom1, char* pchMsg1, char* pchMsg2,
struct csKeys_DL cskTrapdoor, BIGNUM *bnRandom2);
int CS_GenChamKeys_AF(int iSctyPrmtr, struct csKeys_AF *cskChamKeys);
int CS_ChamHash_AF(int iK, char* pchMsg, BIGNUM *bnRnd, struct hashKey_AF HK,
BIGNUM *bnChamDigest);
int CS_ClsnFind_AF(int iK, BIGNUM *bnRandom1, char* pchMsg1, char* pchMsg2,
struct trapdoor_AF cskTrapdoor, BIGNUM *bnRandom2);
int SF(int iSctyPrmtr, int chain_length);
int DL(int iSctyPrmtr, int chain_length);
int AF(int iSctyPrmtr, int chain_length);