-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathencryptor.test.ts
355 lines (347 loc) · 15.8 KB
/
encryptor.test.ts
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
import { CipherText } from '../implementation/cipher-text'
import { Context } from '../implementation/context'
import { Decryptor } from '../implementation/decryptor'
import { EncryptionParameters } from '../implementation/encryption-parameters'
import { KeyGenerator } from '../implementation/key-generator'
import { Modulus } from '../implementation/modulus'
import { PlainText } from '../implementation/plain-text'
import { PublicKey } from '../implementation/public-key'
import { SEALLibrary } from '../implementation/seal'
import { SecretKey } from '../implementation/secret-key'
import { Vector } from '../implementation/vector'
import SEAL from '../throws_wasm_node_umd'
let seal: SEALLibrary
let bfvContext: Context
let coeffModulus: Vector
let plainModulus: Modulus
let bfvEncParms: EncryptionParameters
let bfvKeyGenerator: KeyGenerator
let bfvSecretKey: SecretKey
let bfvPublicKey: PublicKey
let bfvDecryptor: Decryptor
let ckksContext: Context
let ckksEncParms: EncryptionParameters
let ckksKeyGenerator: KeyGenerator
let ckksSecretKey: SecretKey
let ckksPublicKey: PublicKey
beforeAll(async () => {
seal = await SEAL()
const polyModulusDegree = 4096
const bitSize = 20
coeffModulus = seal.CoeffModulus.BFVDefault(polyModulusDegree)
plainModulus = seal.PlainModulus.Batching(polyModulusDegree, bitSize)
bfvEncParms = seal.EncryptionParameters(seal.SchemeType.bfv)
bfvEncParms.setPolyModulusDegree(polyModulusDegree)
bfvEncParms.setCoeffModulus(coeffModulus)
bfvEncParms.setPlainModulus(plainModulus)
bfvContext = seal.Context(bfvEncParms)
bfvKeyGenerator = seal.KeyGenerator(bfvContext)
bfvSecretKey = bfvKeyGenerator.secretKey()
bfvPublicKey = bfvKeyGenerator.createPublicKey()
bfvDecryptor = seal.Decryptor(bfvContext, bfvSecretKey)
ckksEncParms = seal.EncryptionParameters(seal.SchemeType.ckks)
ckksEncParms.setPolyModulusDegree(polyModulusDegree)
ckksEncParms.setCoeffModulus(coeffModulus)
ckksContext = seal.Context(ckksEncParms)
ckksKeyGenerator = seal.KeyGenerator(ckksContext)
ckksSecretKey = ckksKeyGenerator.secretKey()
ckksPublicKey = ckksKeyGenerator.createPublicKey()
})
describe('Encryptor', () => {
test('It should be a factory', () => {
expect(seal.Encryptor).toBeDefined()
expect(typeof seal.Encryptor.constructor).toBe('function')
expect(seal.Encryptor).toBeInstanceOf(Object)
expect(seal.Encryptor.constructor).toBe(Function)
expect(seal.Encryptor.constructor.name).toBe('Function')
})
test('It should construct an instance', () => {
const Constructor = jest.fn(seal.Encryptor)
Constructor(bfvContext, bfvPublicKey)
expect(Constructor).toHaveBeenCalledWith(bfvContext, bfvPublicKey)
})
test('It should construct an instance with a bfvSecretKey', () => {
const Constructor = jest.fn(seal.Encryptor)
Constructor(bfvContext, bfvPublicKey, bfvSecretKey)
expect(Constructor).toHaveBeenCalledWith(
bfvContext,
bfvPublicKey,
bfvSecretKey
)
})
test('It should fail to construct an instance', () => {
const newParms = seal.EncryptionParameters(seal.SchemeType.bfv)
newParms.setPolyModulusDegree(2048)
newParms.setCoeffModulus(
seal.CoeffModulus.BFVDefault(2048, seal.SecurityLevel.tc128)
)
newParms.setPlainModulus(seal.PlainModulus.Batching(2048, 20))
const newContext = seal.Context(newParms)
const newKeyGenerator = seal.KeyGenerator(newContext)
const newPublicKey = newKeyGenerator.createPublicKey()
const Constructor = jest.fn(seal.Encryptor)
expect(() => Constructor(bfvContext, newPublicKey)).toThrow()
expect(Constructor).toHaveBeenCalledWith(bfvContext, newPublicKey)
})
test('It should have properties', () => {
const item = seal.Encryptor(bfvContext, bfvPublicKey)
// Test properties
expect(item).toHaveProperty('instance')
expect(item).toHaveProperty('unsafeInject')
expect(item).toHaveProperty('delete')
expect(item).toHaveProperty('encrypt')
expect(item).toHaveProperty('encryptSerializable')
expect(item).toHaveProperty('encryptSymmetric')
expect(item).toHaveProperty('encryptSymmetricSerializable')
expect(item).toHaveProperty('encryptZero')
expect(item).toHaveProperty('encryptZeroSerializable')
})
test('It should have an instance', () => {
const item = seal.Encryptor(bfvContext, bfvPublicKey)
expect(item.instance).toBeDefined()
})
test('It should inject', () => {
const item = seal.Encryptor(bfvContext, bfvPublicKey)
const newItem = seal.Encryptor(bfvContext, bfvPublicKey)
newItem.delete()
const spyOn = jest.spyOn(newItem, 'unsafeInject')
newItem.unsafeInject(item.instance)
expect(spyOn).toHaveBeenCalledWith(item.instance)
expect(newItem.instance).toEqual(item.instance)
})
test('It should delete the old instance and inject', () => {
const item = seal.Encryptor(bfvContext, bfvPublicKey)
const newItem = seal.Encryptor(bfvContext, bfvPublicKey)
const spyOn = jest.spyOn(newItem, 'unsafeInject')
newItem.unsafeInject(item.instance)
expect(spyOn).toHaveBeenCalledWith(item.instance)
expect(newItem.instance).toEqual(item.instance)
})
test("It should delete it's instance", () => {
const item = seal.Encryptor(bfvContext, bfvPublicKey)
const spyOn = jest.spyOn(item, 'delete')
item.delete()
expect(spyOn).toHaveBeenCalled()
expect(item.instance).toBeUndefined()
})
test('It should skip deleting twice', () => {
const item = seal.Encryptor(bfvContext, bfvPublicKey)
item.delete()
const spyOn = jest.spyOn(item, 'delete')
item.delete()
expect(spyOn).toHaveBeenCalled()
expect(item.instance).toBeUndefined()
})
test('It should encrypt a plaintext to a destination cipher', () => {
const item = seal.Encryptor(bfvContext, bfvPublicKey)
const encoder = seal.BatchEncoder(bfvContext)
const arr = Int32Array.from({ length: encoder.slotCount }).fill(5)
const plain = seal.PlainText()
const cipher = seal.CipherText()
encoder.encode(arr, plain)
const spyOn = jest.spyOn(item, 'encrypt')
item.encrypt(plain, cipher)
expect(spyOn).toHaveBeenCalledWith(plain, cipher)
const plainResult = bfvDecryptor.decrypt(cipher) as PlainText
const decoded = encoder.decode(plainResult, true)
expect(decoded).toEqual(arr)
})
test('It should encrypt a plaintext and return a cipher', () => {
const item = seal.Encryptor(bfvContext, bfvPublicKey)
const encoder = seal.BatchEncoder(bfvContext)
const arr = Int32Array.from({ length: encoder.slotCount }).fill(5)
const plain = seal.PlainText()
encoder.encode(arr, plain)
const spyOn = jest.spyOn(item, 'encrypt')
const cipher = item.encrypt(plain) as CipherText
expect(spyOn).toHaveBeenCalledWith(plain)
expect(cipher).toBeDefined()
expect(typeof cipher.constructor).toBe('function')
expect(cipher).toBeInstanceOf(Object)
expect(cipher.constructor).toBe(Object)
expect(cipher.instance.constructor.name).toBe('Ciphertext')
const plainResult = bfvDecryptor.decrypt(cipher) as PlainText
const decoded = encoder.decode(plainResult, true)
expect(decoded).toEqual(arr)
})
test('It should fail to encrypt serializable', () => {
const item = seal.Encryptor(ckksContext, ckksPublicKey, ckksSecretKey)
const encoder = seal.BatchEncoder(bfvContext)
const arr = Int32Array.from({ length: encoder.slotCount }).fill(0)
const plain = seal.PlainText()
encoder.encode(arr, plain)
const spyOn = jest.spyOn(item, 'encryptSerializable')
expect(() => item.encryptSerializable(plain)).toThrow()
expect(spyOn).toHaveBeenCalledWith(plain)
})
test('It should encrypt a plaintext and return a cipher as a serializable object', () => {
const item = seal.Encryptor(bfvContext, bfvPublicKey)
const encoder = seal.BatchEncoder(bfvContext)
const arr = Int32Array.from({ length: encoder.slotCount }).fill(5)
const plain = seal.PlainText()
encoder.encode(arr, plain)
const spyOn = jest.spyOn(item, 'encryptSerializable')
const serializable = item.encryptSerializable(plain)
expect(spyOn).toHaveBeenCalledWith(plain)
const cipher = seal.CipherText()
cipher.load(bfvContext, serializable.save())
const plainResult = bfvDecryptor.decrypt(cipher) as PlainText
const decoded = encoder.decode(plainResult, true)
expect(decoded).toEqual(arr)
})
test('It should symmetrically encrypt a plaintext to a destination cipher', () => {
const item = seal.Encryptor(bfvContext, bfvPublicKey, bfvSecretKey)
const encoder = seal.BatchEncoder(bfvContext)
const arr = Int32Array.from({ length: encoder.slotCount }).fill(5)
const plain = seal.PlainText()
const cipher = seal.CipherText()
encoder.encode(arr, plain)
const spyOn = jest.spyOn(item, 'encryptSymmetric')
item.encryptSymmetric(plain, cipher)
expect(spyOn).toHaveBeenCalledWith(plain, cipher)
const plainResult = bfvDecryptor.decrypt(cipher) as PlainText
const decoded = encoder.decode(plainResult, true)
expect(decoded).toEqual(arr)
})
test('It should symmetrically encrypt a plaintext and return a cipher', () => {
const item = seal.Encryptor(bfvContext, bfvPublicKey, bfvSecretKey)
const encoder = seal.BatchEncoder(bfvContext)
const arr = Int32Array.from({ length: encoder.slotCount }).fill(5)
const plain = seal.PlainText()
encoder.encode(arr, plain)
const spyOn = jest.spyOn(item, 'encryptSymmetric')
const cipher = item.encryptSymmetric(plain) as CipherText
expect(spyOn).toHaveBeenCalledWith(plain)
expect(cipher).toBeDefined()
expect(typeof cipher.constructor).toBe('function')
expect(cipher).toBeInstanceOf(Object)
expect(cipher.constructor).toBe(Object)
expect(cipher.instance.constructor.name).toBe('Ciphertext')
const cipherTest = seal.CipherText()
cipherTest.load(bfvContext, cipher.save())
const plainResult = bfvDecryptor.decrypt(cipherTest) as PlainText
const decoded = encoder.decode(plainResult, true)
expect(decoded).toEqual(arr)
})
test('It should symmetrically encrypt a plaintext and return a cipher as a serializable object', () => {
const item = seal.Encryptor(bfvContext, bfvPublicKey, bfvSecretKey)
const encoder = seal.BatchEncoder(bfvContext)
const arr = Int32Array.from({ length: encoder.slotCount }).fill(5)
const plain = seal.PlainText()
encoder.encode(arr, plain)
const spyOn = jest.spyOn(item, 'encryptSymmetricSerializable')
const serializable = item.encryptSymmetricSerializable(plain)
expect(spyOn).toHaveBeenCalledWith(plain)
expect(serializable.instance).toBeDefined()
const cipher = seal.CipherText()
cipher.load(bfvContext, serializable.save())
const plainResult = bfvDecryptor.decrypt(cipher) as PlainText
const decoded = encoder.decode(plainResult, true)
expect(decoded).toEqual(arr)
})
test('It should zero encrypt a plaintext to a destination cipher', () => {
const item = seal.Encryptor(bfvContext, bfvPublicKey)
const encoder = seal.BatchEncoder(bfvContext)
const arr = Int32Array.from({ length: encoder.slotCount }).fill(5)
const plain = seal.PlainText()
const cipher = seal.CipherText()
encoder.encode(arr, plain)
item.encrypt(plain, cipher)
const plainResult = bfvDecryptor.decrypt(cipher) as PlainText
const decoded = encoder.decode(plainResult, true)
expect(decoded).toEqual(arr)
const spyOn = jest.spyOn(item, 'encryptZero')
item.encryptZero(cipher)
expect(spyOn).toHaveBeenCalledWith(cipher)
const plainResultZero = bfvDecryptor.decrypt(cipher) as PlainText
const decodedZero = encoder.decode(plainResultZero, true)
const arrZero = Int32Array.from({ length: encoder.slotCount }).fill(0)
expect(decodedZero).toEqual(arrZero)
})
test('It should zero encrypt a plaintext and return a cipher', () => {
const item = seal.Encryptor(bfvContext, bfvPublicKey)
const encoder = seal.BatchEncoder(bfvContext)
const arr = Int32Array.from({ length: encoder.slotCount }).fill(5)
const plain = seal.PlainText()
const cipher = seal.CipherText()
encoder.encode(arr, plain)
item.encrypt(plain, cipher)
const plainResult = bfvDecryptor.decrypt(cipher) as PlainText
const decoded = encoder.decode(plainResult, true)
expect(decoded).toEqual(arr)
const spyOn = jest.spyOn(item, 'encryptZero')
const cipherZero = item.encryptZero() as CipherText
expect(spyOn).toHaveBeenCalledWith()
expect(cipherZero).toBeDefined()
expect(typeof cipherZero.constructor).toBe('function')
expect(cipherZero).toBeInstanceOf(Object)
expect(cipherZero.constructor).toBe(Object)
expect(cipherZero.instance.constructor.name).toBe('Ciphertext')
const plainResultZero = bfvDecryptor.decrypt(cipherZero) as PlainText
const decodedZero = encoder.decode(plainResultZero, true)
const arrZero = Int32Array.from({ length: encoder.slotCount }).fill(0)
expect(decodedZero).toEqual(arrZero)
})
test('It should zero encrypt a plaintext and return a cipher as a serializable object', () => {
const item = seal.Encryptor(bfvContext, bfvPublicKey)
const encoder = seal.BatchEncoder(bfvContext)
const arr = Int32Array.from({ length: encoder.slotCount }).fill(5)
const plain = seal.PlainText()
encoder.encode(arr, plain)
const spyOn = jest.spyOn(item, 'encryptZeroSerializable')
const serializable = item.encryptZeroSerializable()
expect(spyOn).toHaveBeenCalledWith()
const cipherZero = seal.CipherText()
cipherZero.load(bfvContext, serializable.save())
const plainResultZero = bfvDecryptor.decrypt(cipherZero) as PlainText
const decodedZero = encoder.decode(plainResultZero, true)
const arrZero = Int32Array.from({ length: encoder.slotCount }).fill(0)
expect(decodedZero).toEqual(arrZero)
})
test('It should fail to encrypt', () => {
const item = seal.Encryptor(ckksContext, ckksPublicKey)
const encoder = seal.BatchEncoder(bfvContext)
const arr = Int32Array.from({ length: encoder.slotCount }).fill(0)
const plain = seal.PlainText()
encoder.encode(arr, plain)
const spyOn = jest.spyOn(item, 'encrypt')
expect(() => item.encrypt(plain)).toThrow()
expect(spyOn).toHaveBeenCalledWith(plain)
})
test('It should fail to symmetrically encrypt', () => {
const item = seal.Encryptor(ckksContext, ckksPublicKey, ckksSecretKey)
const encoder = seal.BatchEncoder(bfvContext)
const arr = Int32Array.from({ length: encoder.slotCount }).fill(0)
const plain = seal.PlainText()
encoder.encode(arr, plain)
const spyOn = jest.spyOn(item, 'encryptSymmetric')
expect(() => item.encryptSymmetric(plain)).toThrow()
expect(spyOn).toHaveBeenCalledWith(plain)
})
test('It should symmetrically encrypt a plaintext and return a serializable ciphertext', () => {
const item = seal.Encryptor(bfvContext, bfvPublicKey, bfvSecretKey)
const encoder = seal.BatchEncoder(bfvContext)
const arr = Int32Array.from({ length: encoder.slotCount }).fill(5)
const plain = seal.PlainText()
encoder.encode(arr, plain)
const spyOn = jest.spyOn(item, 'encryptSymmetricSerializable')
const serialized = item.encryptSymmetricSerializable(plain)
expect(spyOn).toHaveBeenCalledWith(plain)
expect(serialized.instance).toBeDefined()
const cipher = seal.CipherText()
cipher.load(bfvContext, serialized.save())
const plainResult = bfvDecryptor.decrypt(cipher) as PlainText
const decoded = encoder.decode(plainResult, true)
expect(decoded).toEqual(arr)
})
test('It should fail to symmetrically encrypt and return a serializable ciphertext', () => {
const item = seal.Encryptor(ckksContext, ckksPublicKey, ckksSecretKey)
const encoder = seal.BatchEncoder(bfvContext)
const arr = Int32Array.from({ length: encoder.slotCount }).fill(0)
const plain = seal.PlainText()
encoder.encode(arr, plain)
const spyOn = jest.spyOn(item, 'encryptSymmetricSerializable')
expect(() => item.encryptSymmetricSerializable(plain)).toThrow()
expect(spyOn).toHaveBeenCalledWith(plain)
})
})