-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathencrypt.h
116 lines (91 loc) · 2.98 KB
/
encrypt.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*
* Copyright (c) 2009-2011, Adrian Thurston <[email protected]>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef _ENCRYPT_H
#define _ENCRYPT_H
#include "string.h"
#include "parser.h"
#include "buffer.h"
#include "dlist.h"
#include "recipients.h"
#include <openssl/rand.h>
#include <openssl/objects.h>
#include <openssl/rsa.h>
#include <openssl/bn.h>
#include <openssl/sha.h>
#include <openssl/err.h>
#include <openssl/rsa.h>
#include <openssl/rc4.h>
#include <sys/types.h>
#include <list>
#include <string>
struct Keys;
struct PrivateKey
{
String n;
String e;
String d;
String p;
String q;
String dmp1;
String dmq1;
String iqmp;
};
struct BroadcastSubject
{
String subject;
String subjectSig;
BroadcastSubject *prev, *next;
};
typedef DList<BroadcastSubject> BroadcastSubjectList;
struct Broadcast
{
/* Publisher's broadcast key. */
long long bkId;
String user;
String author;
String publisher;
String authorSig;
String publisherSig;
BroadcastSubjectList subjectList;
String plainMsg;
};
Allocated signEncrypt( Keys *pubEncVer, Keys *privDecSign, const String *iduri, const String &msg );
Allocated decryptVerify( Keys *pubEncVer, Keys *privDecSign, const String &msg );
Allocated decryptVerify1( Keys *privDecSign, const String &msg );
Allocated decryptVerify2( Keys *pubEncVer, Keys *privDecSign, const String &msg );
Allocated bkEncrypt( const String &bk, const String &msg );
Allocated bkDecrypt( const String &bk, const String &msg );
Allocated bkSignEncrypt( Keys *privDecSign, const String &bk, const String &msg );
Allocated bkDecryptVerify( Keys *pubEncVer, const String &bk, const String &msg );
Allocated bkSign( Keys *privDecSign, const String &bk, const String &msg );
Allocated bkVerify( Keys *pubEncVer, const String &bk, const String &msg );
Allocated bkDetachedSign( Keys *privDecSign, const String &bk, const String &msg );
bool bkDetachedVerify( Keys *pubEncVer, const String &bk,
const String &sigMsg, const String &plainMsg );
Allocated pwEncrypt( const String &pass, const String &msg );
Allocated pwDecrypt( const String &pass, const String &msg );
Allocated sign( Keys *privSign, const String &msg );
Allocated verify( Keys *pubVer, const String &msg );
struct RelidSet
{
String priv0;
String priv1;
String priv2;
String priv3;
String priv4;
void generate();
};
#endif