bcrypt4 4.0.1 → 4.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +7 -4
- data/.travis.yml +15 -1
- data/CHANGELOG +3 -0
- data/Gemfile.lock +1 -1
- data/README.md +3 -2
- data/Rakefile +1 -0
- data/bcrypt4.gemspec +3 -2
- metadata +5 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b7e2ef2aa50440cba6c84645825a7e81228860da
|
4
|
+
data.tar.gz: b38c2eb8d1621b3fda32aafe8bde141274273a16
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0445b23872a9b8a23ead7994e8fad4c3e29dd90af0ec9d5650af83af58cc1e16d825319fc69ee33eaf1959320d9ac8f4b874cc100c828a7bee101b6aeb9130ea
|
7
|
+
data.tar.gz: 394317a40d9594829a830af1720a7267705f60f652bb2a91c900caf3d711f5815ddd82ee231a81c379d001629e5ef062b4be59196773452020b7158965cdcb8c
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
@@ -1,4 +1,7 @@
|
|
1
1
|
language: ruby
|
2
|
+
before_install:
|
3
|
+
# jruby-head does not have bundler.
|
4
|
+
- which bundle || gem install bundler
|
2
5
|
rvm:
|
3
6
|
- 1.8.7
|
4
7
|
- 1.9.2
|
@@ -7,10 +10,21 @@ rvm:
|
|
7
10
|
- 2.1.0
|
8
11
|
- 2.2.0
|
9
12
|
- 2.3.0
|
13
|
+
- 2.4.1
|
10
14
|
- ruby-head
|
11
15
|
- jruby-18mode
|
12
16
|
- jruby-19mode
|
13
17
|
- jruby-head
|
14
|
-
- rbx
|
18
|
+
- rbx
|
15
19
|
- ree
|
16
20
|
script: bundle exec rake
|
21
|
+
matrix:
|
22
|
+
allow_failures:
|
23
|
+
- rvm: rbx
|
24
|
+
#known issue with jruby 2y hashs
|
25
|
+
- rvm: jruby-18mode
|
26
|
+
- rvm: jruby-19mode
|
27
|
+
- rvm: jruby-head
|
28
|
+
# known issue with json dependency
|
29
|
+
- rvm: 2.4.1
|
30
|
+
fast_finish: true
|
data/CHANGELOG
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -2,9 +2,9 @@
|
|
2
2
|
|
3
3
|
An easy way to keep your users' passwords secure.
|
4
4
|
|
5
|
-
* http://github.com/
|
5
|
+
* http://github.com/dissolve/bcrypt-ruby/tree/master
|
6
6
|
|
7
|
-
[](https://travis-ci.org/dissolve/bcrypt-ruby)
|
8
8
|
|
9
9
|
## Why you should use `bcrypt()`
|
10
10
|
|
@@ -30,6 +30,7 @@ re-hash those passwords. This vulnerability only affected the JRuby gem.
|
|
30
30
|
The bcrypt gem is available on the following ruby platforms:
|
31
31
|
|
32
32
|
* JRuby
|
33
|
+
** NOTE: due to the reliance on JBCrypt for this library, there is a known issue with bcrypt '2y' format and this will not interoperate with other implementations for '2y' hashes (pull requests welcome).
|
33
34
|
* RubyInstaller 1.8, 1.9, 2.0, 2.1, and 2.2 builds on win32
|
34
35
|
* Any 1.8, 1.9, 2.0, 2.1, 2.2, or 2.3 Ruby on a BSD/OS X/Linux system with a compiler
|
35
36
|
|
data/Rakefile
CHANGED
data/bcrypt4.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'bcrypt4'
|
3
|
-
s.version = '4.0.
|
3
|
+
s.version = '4.0.2'
|
4
4
|
|
5
5
|
s.summary = "OpenBSD's bcrypt() password hashing algorithm."
|
6
6
|
s.description = <<-EOF
|
@@ -29,7 +29,8 @@ Gem::Specification.new do |s|
|
|
29
29
|
|
30
30
|
s.post_install_message = %q{
|
31
31
|
|
32
|
-
|
32
|
+
This is the last version of the bcrypt4 library that will support any format of ruby lower than 1.9.3
|
33
|
+
If you are still using 1.9.2 or older, do not update past 4.0.2
|
33
34
|
|
34
35
|
}
|
35
36
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bcrypt4
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.
|
4
|
+
version: 4.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Coda Hale
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-07-
|
11
|
+
date: 2017-07-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake-compiler
|
@@ -103,11 +103,9 @@ homepage: https://github.com/dissolve/bcrypt-ruby
|
|
103
103
|
licenses:
|
104
104
|
- MIT
|
105
105
|
metadata: {}
|
106
|
-
post_install_message:
|
107
|
-
|
108
|
-
|
109
|
-
The 'bcrypt' gem has had a long running issue that has prevented interop with other implementations of bcrypt. The maintainer seems to be waiting on some specific implementation support before fixing this issue (raised 2 years ago). The 'bcrypt4' gem was created to simply fix that issue. I am no longer waiting for the original maintainer.
|
110
|
-
|
106
|
+
post_install_message: "\n\n This is the last version of the bcrypt4 library that
|
107
|
+
will support any format of ruby lower than 1.9.3 \n If you are still using 1.9.2
|
108
|
+
or older, do not update past 4.0.2\n\n"
|
111
109
|
rdoc_options:
|
112
110
|
- "--title"
|
113
111
|
- bcrypt-ruby
|