-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
228 lines (212 loc) · 6.01 KB
/
index.js
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
const openpgp = require('openpgp');
class sPGPs {
nickname;
email;
fingerprint;
publicKeyArmored;
#privateKeyArmored;
#publicKey;
#privateKey;
#passphrase;
async createStorage(name, email, passphrase) {
try {
const { privateKey, publicKey } = await openpgp.generateKey({
type: 'ecc', // Type of the key, defaults to ECC
curve: 'curve25519', // ECC curve name, defaults to curve25519
userIDs: [{ name: name, email: email }], // you can pass multiple user IDs
passphrase: passphrase, // protects the private key
format: 'armored' // output key format, defaults to 'armored' (other options: 'binary' or 'object')
});
this.publicKeyArmored = publicKey;
this.#privateKeyArmored = privateKey;
this.#publicKey = await openpgp.readKey({ armoredKey: publicKey });
this.#privateKey = await openpgp.decryptKey({
privateKey: await openpgp.readPrivateKey({ armoredKey: privateKey }),
passphrase
});
this.#passphrase = passphrase;
this.fingerprint = (this.#publicKey.getFingerprint());
this.nickname = this.#publicKey.users[0].userID.name;
this.email = this.#publicKey.users[0].userID.email;
} catch(e) {
console.log(e);
}
}
hasJsonStructure(string) {
if (typeof string !== 'string') return false;
try {
const result = JSON.parse(string);
const type = Object.prototype.toString.call(result);
return type === '[object Object]'
|| type === '[object Array]';
} catch(e) {
console.log(e);
}
return false;
}
async readKey(publicKeyArmored) {
try {
let key = await openpgp.readKey({ armoredKey: publicKeyArmored });
return key;
} catch(e) {
console.log(e);
}
return false;
}
async checkMessage(data) {
try {
await openpgp.readMessage({ armoredMessage: data });
return true;
} catch(e) {
console.log(e);
}
return false;
}
checkAllData() {
let check;
((this.nickname)
&& (this.email)
&& (this.fingerprint)
&& (this.publicKeyArmored)
&& (this.#privateKeyArmored)
&& (this.#publicKey)
&& (this.#privateKey)
&& (this.#passphrase)) ? check = true : check = false;
return check;
}
eraseAllData() {
this.nickname = '';
this.email = '';
this.fingerprint = '';
this.publicKeyArmored = '';
this.#privateKeyArmored = '';
this.#publicKey = '';
this.#privateKey = '';
this.#passphrase = '';
}
async encryptStorage() {
try {
const string = JSON.stringify({
publicKey: this.publicKeyArmored,
privateKey: this.#privateKeyArmored
});
const encrypted = await openpgp.encrypt({
message: await openpgp.createMessage({ text: string }),
passwords: [ this.#passphrase ],
config: { preferredCompressionAlgorithm: openpgp.enums.compression.zlib }
});
return encrypted;
} catch(e) {
console.log(e);
}
return false;
}
async generateSecureFile() {
const encrypted = await this.encryptStorage();
const fileHref = 'data:application/pgp-encrypted,' + encodeURIComponent(encrypted);
return fileHref;
}
async decryptStorage(data, passphrase) {
try {
const { data: decrypted } = await openpgp.decrypt({
message: await openpgp.readMessage({ armoredMessage: data }),
passwords: [ passphrase ],
});
if (this.hasJsonStructure(decrypted)) {
const parseData = JSON.parse(decrypted);
this.#publicKey = await openpgp.readKey({ armoredKey: parseData.publicKey });
this.fingerprint = this.#publicKey.getFingerprint();
this.nickname = this.#publicKey.users[0].userID.name;
this.email = this.#publicKey.users[0].userID.email;
this.#privateKey = await openpgp.decryptKey({
privateKey: await openpgp.readPrivateKey({ armoredKey: parseData.privateKey }),
passphrase
});
this.publicKeyArmored = parseData.publicKey;
this.#privateKeyArmored = parseData.privateKey;
this.#passphrase = passphrase;
return true;
} else {
console.log('Error: Invalid container structure');
}
} catch(e) {
console.log(e);
}
return false;
}
async encryptMessage(string, recipientPublicKeyArmored, signature = null) {
try {
let encrypted;
const publicKey = await openpgp.readKey({ armoredKey: recipientPublicKeyArmored });
const privateKey = this.#privateKey;
if (signature === null) {
encrypted = await openpgp.encrypt({
message: await openpgp.createMessage({ text: string }), // input as Message object
encryptionKeys: publicKey
});
} else {
encrypted = await openpgp.encrypt({
message: await openpgp.createMessage({ text: string }), // input as Message object
encryptionKeys: publicKey,
signingKeys: privateKey // optional
});
}
return encrypted;
} catch(e) {
console.log(e);
}
return false;
}
async decryptMessage(encrypted, senderPublicKeyArmored = null) {
try {
const privateKey = this.#privateKey;
const message = await openpgp.readMessage({
armoredMessage: encrypted // parse armored message
});
let decrypted = {};
if (senderPublicKeyArmored === null) {
decrypted = await openpgp.decrypt({
message,
decryptionKeys: privateKey
});
} else {
const publicKey = await openpgp.readKey({ armoredKey: senderPublicKeyArmored });
decrypted = await openpgp.decrypt({
message,
verificationKeys: publicKey, // optional
decryptionKeys: privateKey
});
}
return decrypted;
} catch(e) {
console.log(e);
}
return false;
}
async encryptMessageSymmetricallyWithCompression(string, passphrase) {
try {
const encrypted = await openpgp.encrypt({
message: await openpgp.createMessage({ text: string }),
passwords: [ passphrase ],
config: { preferredCompressionAlgorithm: openpgp.enums.compression.zlib }
});
return encrypted;
} catch(e) {
console.log(e);
}
return false;
}
async decryptMessageSymmetricallyWithCompression(data, passphrase) {
try {
const { data: decrypted } = await openpgp.decrypt({
message: await openpgp.readMessage({ armoredMessage: data }),
passwords: [ passphrase ],
});
return decrypted;
} catch(e) {
console.log(e);
}
return false;
}
}
module.exports = sPGPs;