-
Notifications
You must be signed in to change notification settings - Fork 368
Expand file tree
/
Copy pathencryptor_spec.rb
More file actions
708 lines (579 loc) · 25.8 KB
/
encryptor_spec.rb
File metadata and controls
708 lines (579 loc) · 25.8 KB
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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
require 'spec_helper'
module VCAP::CloudController
RSpec.describe Encryptor do
let(:salt) { Encryptor.generate_salt }
let(:encryption_iterations) { Encryptor::ENCRYPTION_ITERATIONS }
describe 'generating some salt' do
it 'returns a short, random string' do
expect(salt.length).to be(16)
expect(salt).not_to eql(Encryptor.generate_salt)
end
end
describe 'encrypting a string' do
let(:input) { 'i-am-the-input' }
let!(:encrypted_string) { Encryptor.encrypt(input, salt) }
it 'returns an encrypted string' do
expect(encrypted_string).to match(/\w+/)
expect(encrypted_string).not_to include(input)
end
it 'is deterministic' do
expect(Encryptor.encrypt(input, salt)).to eql(encrypted_string)
end
it 'depends on the salt' do
expect(Encryptor.encrypt(input, Encryptor.generate_salt)).not_to eql(encrypted_string)
end
it 'does not encrypt null values' do
expect(Encryptor.encrypt(nil, salt)).to be_nil
end
context 'when database_encryption_keys has been set' do
let(:salt) { 'FFFFFFFFFFFFFFFF' }
let(:encrypted_death_string) { 'UsFVj9hjohvzOwlJQ4tqHA==' }
let(:encrypted_legacy_string) { 'a6FHdu9k3+CCSjvzIX+i7w==' }
before do
Encryptor.db_encryption_key = 'legacy-crypto-key'
Encryptor.database_encryption_keys = {
foo: 'fooencryptionkey',
death: 'headbangingdeathmetalkey'
}
end
context 'when the label is found in the hash' do
it 'encrypts using the value corresponding to the label' do
allow(Encryptor).to receive(:current_encryption_key_label).and_return('death')
expect(Encryptor.encrypt(input, salt)).to eql(encrypted_death_string)
end
end
context 'when the label is not found in the hash' do
it 'encrypts using current db_encryption_key when the label is not nil' do
allow(Encryptor).to receive(:current_encryption_key_label).and_return('Inigo Montoya')
expect(Encryptor.encrypt(input, salt)).to eql(encrypted_legacy_string)
end
it 'encrypts using current db_encryption_key when the label is nil' do
allow(Encryptor).to receive(:current_encryption_key_label).and_return(nil)
expect(Encryptor.encrypt(input, salt)).to eql(encrypted_legacy_string)
end
end
end
context 'when database_encryption_keys has not been set' do
let(:salt) { 'FFFFFFFFFFFFFFFF' }
let(:encrypted_legacy_string) { 'a6FHdu9k3+CCSjvzIX+i7w==' }
before do
Encryptor.db_encryption_key = 'legacy-crypto-key'
Encryptor.database_encryption_keys = nil
allow(Encryptor).to receive(:current_encryption_key_label).and_return('foo')
end
it 'encrypts using db_encryption_key' do
expect(Encryptor.encrypt(input, salt)).to eql(encrypted_legacy_string)
end
end
end
describe '.pbkdf2_hmac_iterations=' do
after do
Encryptor.pbkdf2_hmac_iterations = Encryptor::ENCRYPTION_ITERATIONS
end
context 'when set to a value higher than Encryptor::ENCRYPTION_ITERATIONS' do
it 'sets pbkdf2_hmac_iterations' do
Encryptor.pbkdf2_hmac_iterations = 38_000
expect(Encryptor.pbkdf2_hmac_iterations).to eq 38_000
end
end
context 'when set to a value lower than Encryptor::ENCRYPTION_ITERATIONS' do
it 'remains set to ENCRYPTION_ITERATIONS' do
Encryptor.pbkdf2_hmac_iterations = 1
expect(Encryptor.pbkdf2_hmac_iterations).to eq Encryptor::ENCRYPTION_ITERATIONS
end
end
end
describe '.decrypt' do
let(:unencrypted_string) { 'some-string' }
before do
Encryptor.db_encryption_key = 'legacy-crypto-key'
Encryptor.database_encryption_keys = {}
end
it 'returns the original string' do
encrypted_string = Encryptor.encrypt(unencrypted_string, salt)
expect(Encryptor.decrypt(encrypted_string, salt, iterations: encryption_iterations)).to eq(unencrypted_string)
end
it 'returns nil if the encrypted string is nil' do
expect(Encryptor.decrypt(nil, salt, iterations: encryption_iterations)).to be_nil
end
context 'when database_encryption_keys is configured' do
before do
Encryptor.database_encryption_keys = {
foo: 'fooencryptionkey',
death: 'headbangingdeathmetalkey'
}
end
context 'when no encryption key label is passed' do
before do
allow(Encryptor).to receive(:current_encryption_key_label).and_return(nil)
end
it 'decrypts using #db_encryption_key' do
encrypted_string = Encryptor.encrypt(unencrypted_string, salt)
expect(Encryptor).to receive(:db_encryption_key).and_call_original.at_least(:once)
expect(Encryptor.decrypt(encrypted_string, salt, iterations: encryption_iterations)).to eq(unencrypted_string)
end
end
context 'when encryption was done using a labelled key' do
before do
allow(Encryptor).to receive(:current_encryption_key_label).and_return('foo')
end
it 'decrypts using the key specified by the passed label' do
encrypted_string = Encryptor.encrypt(unencrypted_string, salt)
expect(Encryptor.decrypt(encrypted_string, salt, label: 'foo', iterations: encryption_iterations)).to eq(unencrypted_string)
end
context 'when no key label is passed for decryption' do
it 'fails to decrypt the encrypted string successfully' do
encrypted_string = Encryptor.encrypt(unencrypted_string, salt)
result = begin
Encryptor.decrypt(encrypted_string, salt, iterations: encryption_iterations)
rescue VCAP::CloudController::Encryptor::EncryptorError => e
e.message
end
expect(result).not_to eq(unencrypted_string)
end
end
context 'when the wrong label is passed for decryption' do
it 'fails to decrypt the encrypted string successfully' do
encrypted_string = Encryptor.encrypt(unencrypted_string, salt)
result = begin
Encryptor.decrypt(encrypted_string, salt, label: 'death', iterations: encryption_iterations)
rescue VCAP::CloudController::Encryptor::EncryptorError => e
e.message
end
expect(result).not_to eq(unencrypted_string)
end
it 'raises an EncryptorError' do
allow(Encryptor).to receive(:current_encryption_key_label).and_return('foo')
encrypted_string = Encryptor.encrypt(unencrypted_string, salt)
expect do
Encryptor.decrypt(encrypted_string, salt, label: 'bar', iterations: encryption_iterations)
end.to raise_error(VCAP::CloudController::Encryptor::EncryptorError, %r{Encryption/Decryption failed: })
end
end
end
end
context 'when the salt is only 8 bytes (legacy mode)' do
let(:salt) { SecureRandom.hex(4).to_s }
it 'decrypts correctly' do
encrypted_string = Encryptor.encrypt(unencrypted_string, salt)
expect(Encryptor.decrypt(encrypted_string, salt, iterations: encryption_iterations)).to eq(unencrypted_string)
end
end
end
end
RSpec.describe Encryptor::FieldEncryptor do
let(:base_class) do
Class.new do
include VCAP::CloudController::Encryptor::FieldEncryptor
def self.columns
raise '<dynamic class>.columns: not implemented'
end
def self.name
'BaseClass'
end
def self.table_name
:table_name
end
def db; end
end
end
let(:db) { double(Sequel::Database) }
before do
allow(base_class).to receive(:columns) { columns }
allow(db).to receive(:transaction).and_yield
base_class.send :attr_accessor, *columns # emulate Sequel super methods
end
describe '#set_field_as_encrypted' do
context 'model does not have the salt column' do
let(:columns) { %i[id name size encryption_key_label] }
context 'default name' do
it 'raises an error' do
expect do
base_class.send :set_field_as_encrypted, :name
end.to raise_error(RuntimeError, /salt/)
end
end
context 'explicit name' do
it 'raises an error' do
expect do
base_class.send :set_field_as_encrypted, :name, salt: :foobar
end.to raise_error(RuntimeError, /foobar/)
end
end
end
context 'model has the salt column' do
let(:columns) { %i[id name size salt encryption_key_label encryption_iterations] }
it 'does not raise an error' do
expect do
base_class.send :set_field_as_encrypted, :name
end.not_to raise_error
end
it 'creates a salt generation method' do
base_class.send :set_field_as_encrypted, :name
expect(base_class.instance_methods).to include(:generate_salt)
end
it 'stores its classname' do
base_class.send :set_field_as_encrypted, :name
expect(Encryptor.encrypted_classes).to include(base_class.name)
end
context 'explicit name' do
let(:columns) { %i[id name size foobar encryption_key_label encryption_iterations] }
it 'does not raise an error' do
expect do
base_class.send :set_field_as_encrypted, :name, salt: :foobar
end.not_to raise_error
end
it 'creates a salt generation method' do
base_class.send :set_field_as_encrypted, :name, salt: :foobar
expect(base_class.instance_methods).to include(:generate_foobar)
end
end
end
context 'model does not have the "encryption_key_label" column' do
let(:columns) { %i[id name salt size] }
it 'raises an error' do
expect do
base_class.send :set_field_as_encrypted, :name
end.to raise_error(RuntimeError, /encryption_key_label/)
end
end
context 'model does not have the "encryption_iterations" column' do
let(:columns) { %i[id name salt encryption_key_label] }
it 'raises and error' do
expect { base_class.send :set_field_as_encrypted, :name }.to raise_error(RuntimeError, /encryption_iterations/)
end
end
end
describe 'field-specific methods' do
let(:columns) { %i[sekret salt encryption_key_label encryption_iterations] }
let(:model_class) do
Class.new(base_class) do
set_field_as_encrypted :sekret
def self.name
'ModelClass'
end
end
end
let(:subject) { model_class.new }
let(:default_key) { 'somerandomkey' }
let(:encryption_iterations) { Encryptor::ENCRYPTION_ITERATIONS }
before do
subject.encryption_iterations = encryption_iterations
allow(subject).to receive(:db) { db }
Encryptor.db_encryption_key = default_key
end
describe 'salt generation method' do
context 'salt is not set' do
it 'updates the salt using Encryptor' do
[nil, ''].each do |unset_value|
expect(Encryptor).to receive(:generate_salt).and_return('new salt')
subject.salt = unset_value
subject.generate_salt
expect(subject.salt).to eq 'new salt'
end
end
end
context 'salt is set' do
it 'does not update the salt' do
subject.salt = 'old salt'
subject.generate_salt
expect(subject.salt).to eq 'old salt'
end
end
end
describe 'encryption iteration' do
it 'updates to the newest iteration value' do
allow(Encryptor).to receive(:pbkdf2_hmac_iterations).and_return(2048)
subject.encryption_iterations = 2048
subject.salt = 'some salt'
expect(Encryptor).to receive(:encrypt).with('hello', 'some salt')
allow(Encryptor).to receive(:pbkdf2_hmac_iterations).and_return(100_001)
subject.sekret = 'hello'
expect(subject.encryption_iterations).to eq 100_001
end
end
describe 'decryption' do
it 'decrypts by passing the salt and the underlying value to Encryptor' do
subject.salt = 'asdf'
subject.sekret_without_encryption = 'underlying'
expect(Encryptor).to receive(:decrypt).with('underlying', 'asdf', iterations: encryption_iterations, label: nil).and_return('unencrypted')
expect(subject.sekret).to eq 'unencrypted'
end
end
describe 'encryption' do
it 'calls the salt generation method' do
expect(subject).to receive(:generate_salt).and_call_original
subject.sekret = 'foobar'
end
context 'blank value' do
before do
subject.sekret = 'notanilvalue'
end
context 'when the value is nil' do
it 'stores a default nil value without trying to encrypt' do
expect(subject.sekret_without_encryption).not_to be_nil
expect do
subject.sekret = nil
end.to change(subject, :sekret_without_encryption).to(nil)
end
end
context 'when the value is blank' do
it 'stores a default nil value without trying to encrypt' do
expect(subject.sekret_without_encryption).not_to be_nil
expect do
subject.sekret = ''
end.to change(subject, :sekret_without_encryption).to(nil)
end
end
end
context 'non-blank value' do
let(:salt) { Encryptor.generate_salt }
let(:unencrypted_string) { 'unencrypted' }
before do
Encryptor.database_encryption_keys = {
foo: 'fooencryptionkey',
bar: 'headbangingdeathmetalkey'
}
end
it 'encrypts by passing the value and salt to Encryptor' do
subject.salt = salt
expect(Encryptor).to receive(:encrypt).with('unencrypted', salt).and_return('encrypted')
subject.sekret = unencrypted_string
expect(subject.sekret_without_encryption).to eq 'encrypted'
end
it 'encrypts using the default database_encryption_keys' do
subject.salt = salt
subject.sekret = unencrypted_string
expect(Encryptor.decrypt(subject.sekret_without_encryption, subject.salt, iterations: encryption_iterations)).to eq(unencrypted_string)
end
context 'model has a value for encryption_key_label' do
let(:columns) { %i[sekret salt encryption_key_label encryption_iterations] }
before do
allow(Encryptor).to receive(:current_encryption_key_label).and_return('foo')
subject.salt = salt
subject.encryption_key_label = 'foo'
subject.sekret = unencrypted_string
expect(subject.sekret).to eq(unencrypted_string)
end
it 'encrypts using the key corresponding to the label' do
subject.salt = salt
expect(Encryptor).to receive(:encrypt).with(unencrypted_string, salt).and_call_original
subject.sekret = unencrypted_string
expect(Encryptor.decrypt(subject.sekret_without_encryption, salt, label: 'foo', iterations: encryption_iterations)).to eq(unencrypted_string)
end
end
end
end
describe 'key rotation' do
let(:salt) { Encryptor.generate_salt }
let(:unencrypted_string) { 'unencrypted' }
before do
Encryptor.database_encryption_keys = {
foo: 'fooencryptionkey',
bar: 'headbangingdeathmetalkey'
}
allow(Encryptor).to receive(:current_encryption_key_label).and_return('foo')
subject.sekret = unencrypted_string
expect(subject.sekret).to eq(unencrypted_string)
allow(Encryptor).to receive(:current_encryption_key_label).and_return('bar')
end
it 'updates encryption_key_label in the record when encrypting' do
expect(subject.encryption_key_label).to eq('foo')
subject.sekret = 'nu'
expect(subject.sekret).to eq('nu')
expect(subject.encryption_key_label).to eq('bar')
end
context 'and the field is serialized (and/or has other alias method chains)' do
let(:serialized_model) do
Class.new(base_class) do
set_field_as_encrypted :sekret
def self.name
'SerializedModelClass'
end
def sekret_with_serialization
Oj.load(sekret_without_serialization)
end
def sekret_with_serialization=(sekret)
self.sekret_without_serialization = Oj.dump(sekret)
end
alias_method 'sekret_without_serialization', 'sekret'
alias_method 'sekret', 'sekret_with_serialization'
alias_method 'sekret_without_serialization=', 'sekret='
alias_method 'sekret=', 'sekret_with_serialization='
end
end
let(:subject) { serialized_model.new }
let(:unencrypted_string) { { 'foo' => 'bar' } }
it 're-encrypts the field after it has been serialized (the encryptor only works for strings, not hashes)' do
subject.sekret = { 'foo' => 'bar' }
expect(subject.sekret_without_serialization).to eq(%({"foo":"bar"}))
expect(subject.sekret).to eq({ 'foo' => 'bar' })
expect(subject.encryption_key_label).to eq(Encryptor.current_encryption_key_label)
end
end
context 'and the model has another encrypted field' do
let(:columns) { %i[sekret salt sekret2 sekret2_salt encryption_key_label encryption_iterations] }
let(:unencrypted_string2) { 'announce presence with authority' }
let(:multi_field_class) do
Class.new(base_class) do
set_field_as_encrypted :sekret
set_field_as_encrypted :sekret2, { salt: 'sekret2_salt' }
def db; end
def self.name
'MultiFieldClass'
end
end
end
let(:subject) { multi_field_class.new }
before do
allow(Encryptor).to receive(:current_encryption_key_label).and_return('foo')
subject.sekret = unencrypted_string
subject.sekret2 = unencrypted_string2
end
it 're-encrypts that field with the new key' do
allow(Encryptor).to receive(:current_encryption_key_label).and_return('bar')
subject.sekret = 'nu'
expect(subject.encryption_key_label).to eq('bar')
expect(Encryptor.decrypt(subject.sekret_without_encryption, subject.salt, label: 'bar', iterations: encryption_iterations)).to eq('nu')
expect(Encryptor.decrypt(subject.sekret2_without_encryption, subject.sekret2_salt, label: 'bar', iterations: encryption_iterations)).to eq(unencrypted_string2)
end
end
context 'and the model is a subclass of the class with encrypted fields' do
let(:columns) { %i[sekret salt sekret2 sekret2_salt encryption_key_label encryption_iterations] }
let(:unencrypted_string2) { 'announce presence with authority' }
let(:sti_class_parent) do
Class.new(base_class) do
set_field_as_encrypted :sekret
set_field_as_encrypted :sekret2, { salt: 'sekret2_salt' }
def db; end
def self.name
'StiClassParent'
end
end
end
let(:sti_class_child) do
Class.new(sti_class_parent) do
def self.name
'StiClassChild'
end
end
end
let(:subject) { sti_class_child.new }
before do
allow(Encryptor).to receive(:encrypt).and_call_original
allow(Encryptor).to receive(:current_encryption_key_label).and_return('foo')
subject.sekret = unencrypted_string
subject.sekret2 = unencrypted_string2
allow(Encryptor).to receive(:current_encryption_key_label).and_return('bar')
end
it 're-encrypts all fields from the superclass' do
expect(subject.encryption_key_label).to eq('foo')
subject.sekret = 'nu'
expect(subject.sekret).to eq('nu')
expect(subject.encryption_key_label).to eq('bar')
expect(Encryptor.decrypt(subject.sekret_without_encryption, subject.salt, label: 'bar', iterations: encryption_iterations)).to eq('nu')
expect(Encryptor.decrypt(subject.sekret2_without_encryption, subject.sekret2_salt, label: 'bar', iterations: encryption_iterations)).to eq(unencrypted_string2)
end
end
end
describe 'pbkdf2_hmac iterations' do
let(:salt) { Encryptor.generate_salt }
let(:unencrypted_string) { 'unencrypted' }
before do
Encryptor.database_encryption_keys = {
foo: 'fooencryptionkey'
}
allow(Encryptor).to receive(:current_encryption_key_label).and_return('foo')
allow(Encryptor).to receive(:pbkdf2_hmac_iterations).and_return(2048)
subject.sekret = unencrypted_string
expect(subject.sekret).to eq(unencrypted_string)
allow(Encryptor).to receive(:pbkdf2_hmac_iterations).and_return(100_001)
end
it 'updates encryption_iterations in the record when encrypting' do
expect(subject.encryption_iterations).to eq(2048)
subject.sekret = 'nu'
expect(subject.sekret).to eq('nu')
expect(subject.encryption_iterations).to eq(100_001)
end
context 'and the model has another encrypted field' do
let(:columns) { %i[sekret salt sekret2 sekret2_salt encryption_key_label encryption_iterations] }
let(:unencrypted_string2) { 'announce presence with authority' }
let(:multi_field_class) do
Class.new(base_class) do
set_field_as_encrypted :sekret
set_field_as_encrypted :sekret2, { salt: 'sekret2_salt' }
def db; end
def self.name
'MultiFieldClass'
end
end
end
let(:subject) { multi_field_class.new }
before do
allow(Encryptor).to receive(:pbkdf2_hmac_iterations).and_return(2048)
subject.sekret = unencrypted_string
subject.sekret2 = unencrypted_string2
end
it 're-encrypts all fields with the new iteration count' do
allow(Encryptor).to receive(:pbkdf2_hmac_iterations).and_return(100_001)
subject.sekret = 'nu'
expect(subject.encryption_iterations).to eq(100_001)
expect(Encryptor.decrypt(subject.sekret_without_encryption, subject.salt, label: 'foo', iterations: 100_001)).to eq('nu')
expect(Encryptor.decrypt(subject.sekret2_without_encryption, subject.sekret2_salt, label: 'foo', iterations: 100_001)).to eq(unencrypted_string2)
end
end
context 'and the model is a subclass of the class with encrypted fields' do
let(:columns) { %i[sekret salt sekret2 sekret2_salt encryption_key_label encryption_iterations] }
let(:unencrypted_string2) { 'announce presence with authority' }
let(:sti_class_parent) do
Class.new(base_class) do
set_field_as_encrypted :sekret
set_field_as_encrypted :sekret2, { salt: 'sekret2_salt' }
def db; end
def self.name
'StiClassParent'
end
end
end
let(:sti_class_child) do
Class.new(sti_class_parent) do
def self.name
'StiClassChild'
end
end
end
let(:subject) { sti_class_child.new }
before do
allow(Encryptor).to receive(:encrypt).and_call_original
allow(Encryptor).to receive(:pbkdf2_hmac_iterations).and_return(2048)
subject.sekret = unencrypted_string
subject.sekret2 = unencrypted_string2
allow(Encryptor).to receive(:pbkdf2_hmac_iterations).and_return(100_001)
end
it 're-encrypts all fields from the superclass' do
expect(subject.encryption_iterations).to eq(2048)
subject.sekret = 'nu'
expect(subject.sekret).to eq('nu')
expect(subject.encryption_iterations).to eq(100_001)
expect(Encryptor.decrypt(subject.sekret_without_encryption, subject.salt, label: 'foo', iterations: 100_001)).to eq('nu')
expect(Encryptor.decrypt(subject.sekret2_without_encryption, subject.sekret2_salt, label: 'foo', iterations: 100_001)).to eq(unencrypted_string2)
end
end
end
describe 'alternative storage column is specified' do
let(:columns) { %i[sekret salt encrypted_sekret encryption_key_label encryption_iterations] }
let(:model_class) do
Class.new(base_class) do
set_field_as_encrypted :sekret, { column: :encrypted_sekret }
end
end
it 'stores the encrypted value in that column' do
expect(subject.encrypted_sekret).to be_nil
subject.sekret = 'asdf'
expect(subject.encrypted_sekret).not_to be_nil
expect(subject.sekret).to eq 'asdf'
end
end
end
end
end