blind_index 2.5.0 → 2.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/LICENSE.txt +1 -1
- data/README.md +0 -10
- data/lib/blind_index/key_generator.rb +1 -0
- data/lib/blind_index/model.rb +1 -1
- data/lib/blind_index/version.rb +1 -1
- data/lib/blind_index.rb +3 -3
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 291577a62790b52028024d748fc849ccaaeebe73b611969291b07a3eef43fd50
|
4
|
+
data.tar.gz: b0775917f436380ead5163519a98f7984ce257db8b664c44f299f1ebbba32934
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 484dbd052625a14ae883b943d316b3bcf451baf53fb8c67239973c6c7598c50045f3e44af30233424945e427d8e1a43e35dfc3c50884d4567a30d6186cc3aa06
|
7
|
+
data.tar.gz: fe2ad8af315478d6baa00be6f97bdead8767866a8efa3c334cc1e66898571e6f7407a04ec8b53c4a61657cd23943ec24593559fe8c913f57ea14c82bd3d51c8a
|
data/CHANGELOG.md
CHANGED
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -385,16 +385,6 @@ One alternative to blind indexing is to use a deterministic encryption scheme, l
|
|
385
385
|
1. You can keep encryption consistent for all fields (both searchable and non-searchable)
|
386
386
|
2. Blind indexing supports expressions
|
387
387
|
|
388
|
-
## Upgrading
|
389
|
-
|
390
|
-
### 2.0.0
|
391
|
-
|
392
|
-
2.0.0 brings a number of improvements.
|
393
|
-
|
394
|
-
- Blind indexes are updated immediately instead of in a `before_validation` callback
|
395
|
-
- Better Lockbox integration - no need to generate a separate key
|
396
|
-
- There’s a new gem for Argon2 that has no dependencies and (officially) supports Windows
|
397
|
-
|
398
388
|
## History
|
399
389
|
|
400
390
|
View the [changelog](https://github.com/ankane/blind_index/blob/master/CHANGELOG.md)
|
data/lib/blind_index/model.rb
CHANGED
@@ -38,7 +38,7 @@ module BlindIndex
|
|
38
38
|
class_eval do
|
39
39
|
activerecord = defined?(ActiveRecord) && self < ActiveRecord::Base
|
40
40
|
|
41
|
-
if activerecord
|
41
|
+
if activerecord
|
42
42
|
# blind index value isn't really sensitive
|
43
43
|
# but don't need to show it in the Rails console
|
44
44
|
self.filter_attributes += [/\A#{Regexp.escape(bidx_attribute)}\z/]
|
data/lib/blind_index/version.rb
CHANGED
data/lib/blind_index.rb
CHANGED
@@ -51,7 +51,7 @@ module BlindIndex
|
|
51
51
|
|
52
52
|
# check size
|
53
53
|
size = (options[:size] || 32).to_i
|
54
|
-
raise BlindIndex::Error, "Size must be between 1 and 32" unless (1..32).
|
54
|
+
raise BlindIndex::Error, "Size must be between 1 and 32" unless (1..32).cover?(size)
|
55
55
|
|
56
56
|
value = value.to_s
|
57
57
|
|
@@ -70,7 +70,7 @@ module BlindIndex
|
|
70
70
|
Argon2::KDF.argon2id(value, salt: key, t: t, m: m, p: 1, length: size)
|
71
71
|
when :pbkdf2_sha256
|
72
72
|
iterations = cost_options[:iterations] || options[:iterations] || (options[:slow] ? 100000 : 10000)
|
73
|
-
OpenSSL::
|
73
|
+
OpenSSL::KDF.pbkdf2_hmac(value, salt: key, iterations: iterations, length: size, hash: "sha256")
|
74
74
|
when :argon2i
|
75
75
|
t = (cost_options[:t] || 3).to_i
|
76
76
|
# use same bounds as rbnacl
|
@@ -86,7 +86,7 @@ module BlindIndex
|
|
86
86
|
n = cost_options[:n] || 4096
|
87
87
|
r = cost_options[:r] || 8
|
88
88
|
cp = cost_options[:p] || 1
|
89
|
-
|
89
|
+
OpenSSL::KDF.scrypt(value, salt: key, N: n, r: r, p: cp, length: size)
|
90
90
|
else
|
91
91
|
raise BlindIndex::Error, "Unknown algorithm"
|
92
92
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: blind_index
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Kane
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -16,28 +16,28 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '7'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '7'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: argon2-kdf
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.
|
33
|
+
version: '0.2'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.
|
40
|
+
version: '0.2'
|
41
41
|
description:
|
42
42
|
email: andrew@ankane.org
|
43
43
|
executables: []
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.5.
|
76
|
+
rubygems_version: 3.5.16
|
77
77
|
signing_key:
|
78
78
|
specification_version: 4
|
79
79
|
summary: Securely search encrypted database fields
|