bcrypt 3.1.12-java → 3.1.16-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.travis.yml +8 -7
- data/CHANGELOG +78 -62
- data/README.md +17 -15
- data/Rakefile +2 -27
- data/appveyor.yml +32 -32
- data/bcrypt.gemspec +1 -3
- data/ext/jruby/bcrypt_jruby/BCrypt.java +524 -351
- data/ext/mri/bcrypt_ext.c +2 -2
- data/ext/mri/crypt.h +12 -1
- data/ext/mri/crypt_blowfish.c +269 -152
- data/ext/mri/crypt_blowfish.h +27 -0
- data/ext/mri/crypt_gensalt.c +27 -14
- data/ext/mri/crypt_gensalt.h +30 -0
- data/ext/mri/extconf.rb +6 -0
- data/ext/mri/ow-crypt.h +25 -17
- data/ext/mri/wrapper.c +338 -46
- data/ext/mri/x86.S +203 -0
- data/lib/bcrypt.rb +1 -6
- data/lib/bcrypt/engine.rb +7 -5
- data/lib/bcrypt/password.rb +3 -3
- data/spec/bcrypt/engine_spec.rb +77 -2
- data/spec/bcrypt/password_spec.rb +2 -2
- metadata +8 -21
- data/Gemfile.lock +0 -44
data/Gemfile.lock
DELETED
@@ -1,44 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
bcrypt (3.1.12)
|
5
|
-
|
6
|
-
GEM
|
7
|
-
remote: https://rubygems.org/
|
8
|
-
specs:
|
9
|
-
diff-lcs (1.2.5)
|
10
|
-
json (1.8.6)
|
11
|
-
json (1.8.6-java)
|
12
|
-
rake (10.4.2)
|
13
|
-
rake-compiler (0.9.5)
|
14
|
-
rake
|
15
|
-
rdoc (3.12.2)
|
16
|
-
json (~> 1.4)
|
17
|
-
rspec (3.3.0)
|
18
|
-
rspec-core (~> 3.3.0)
|
19
|
-
rspec-expectations (~> 3.3.0)
|
20
|
-
rspec-mocks (~> 3.3.0)
|
21
|
-
rspec-core (3.3.2)
|
22
|
-
rspec-support (~> 3.3.0)
|
23
|
-
rspec-expectations (3.3.1)
|
24
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
25
|
-
rspec-support (~> 3.3.0)
|
26
|
-
rspec-mocks (3.3.2)
|
27
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
28
|
-
rspec-support (~> 3.3.0)
|
29
|
-
rspec-support (3.3.0)
|
30
|
-
|
31
|
-
PLATFORMS
|
32
|
-
java
|
33
|
-
ruby
|
34
|
-
x64-mingw32
|
35
|
-
x86-mingw32
|
36
|
-
|
37
|
-
DEPENDENCIES
|
38
|
-
bcrypt!
|
39
|
-
rake-compiler (~> 0.9.2)
|
40
|
-
rdoc (~> 3.12)
|
41
|
-
rspec (>= 3)
|
42
|
-
|
43
|
-
BUNDLED WITH
|
44
|
-
1.16.1
|