bcrypt 3.1.15-java
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 +7 -0
- data/.gitignore +9 -0
- data/.rspec +3 -0
- data/.travis.yml +23 -0
- data/CHANGELOG +101 -0
- data/COPYING +28 -0
- data/Gemfile +2 -0
- data/Gemfile.lock +37 -0
- data/README.md +194 -0
- data/Rakefile +72 -0
- data/appveyor.yml +50 -0
- data/bcrypt.gemspec +27 -0
- data/ext/jruby/bcrypt_jruby/BCrypt.java +925 -0
- data/ext/mri/bcrypt_ext.c +64 -0
- data/ext/mri/crypt.c +57 -0
- data/ext/mri/crypt.h +24 -0
- data/ext/mri/crypt_blowfish.c +903 -0
- data/ext/mri/crypt_blowfish.h +27 -0
- data/ext/mri/crypt_gensalt.c +124 -0
- data/ext/mri/crypt_gensalt.h +30 -0
- data/ext/mri/extconf.rb +22 -0
- data/ext/mri/ow-crypt.h +43 -0
- data/ext/mri/wrapper.c +554 -0
- data/ext/mri/x86.S +203 -0
- data/lib/bcrypt.rb +16 -0
- data/lib/bcrypt/engine.rb +118 -0
- data/lib/bcrypt/error.rb +22 -0
- data/lib/bcrypt/password.rb +87 -0
- data/spec/TestBCrypt.java +194 -0
- data/spec/bcrypt/engine_spec.rb +157 -0
- data/spec/bcrypt/error_spec.rb +37 -0
- data/spec/bcrypt/password_spec.rb +124 -0
- data/spec/spec_helper.rb +2 -0
- metadata +119 -0
data/spec/spec_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,119 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bcrypt
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 3.1.15
|
5
|
+
platform: java
|
6
|
+
authors:
|
7
|
+
- Coda Hale
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-07-21 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - "~>"
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: 0.9.2
|
19
|
+
name: rake-compiler
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 0.9.2
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
29
|
+
requirements:
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '3'
|
33
|
+
name: rspec
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '3'
|
41
|
+
description: |2
|
42
|
+
bcrypt() is a sophisticated and secure hash algorithm designed by The OpenBSD project
|
43
|
+
for hashing passwords. The bcrypt Ruby gem provides a simple wrapper for safely handling
|
44
|
+
passwords.
|
45
|
+
email: coda.hale@gmail.com
|
46
|
+
executables: []
|
47
|
+
extensions: []
|
48
|
+
extra_rdoc_files:
|
49
|
+
- README.md
|
50
|
+
- COPYING
|
51
|
+
- CHANGELOG
|
52
|
+
- lib/bcrypt.rb
|
53
|
+
- lib/bcrypt/password.rb
|
54
|
+
- lib/bcrypt/engine.rb
|
55
|
+
- lib/bcrypt/error.rb
|
56
|
+
files:
|
57
|
+
- ".gitignore"
|
58
|
+
- ".rspec"
|
59
|
+
- ".travis.yml"
|
60
|
+
- CHANGELOG
|
61
|
+
- COPYING
|
62
|
+
- Gemfile
|
63
|
+
- Gemfile.lock
|
64
|
+
- README.md
|
65
|
+
- Rakefile
|
66
|
+
- appveyor.yml
|
67
|
+
- bcrypt.gemspec
|
68
|
+
- ext/jruby/bcrypt_jruby/BCrypt.java
|
69
|
+
- ext/mri/bcrypt_ext.c
|
70
|
+
- ext/mri/crypt.c
|
71
|
+
- ext/mri/crypt.h
|
72
|
+
- ext/mri/crypt_blowfish.c
|
73
|
+
- ext/mri/crypt_blowfish.h
|
74
|
+
- ext/mri/crypt_gensalt.c
|
75
|
+
- ext/mri/crypt_gensalt.h
|
76
|
+
- ext/mri/extconf.rb
|
77
|
+
- ext/mri/ow-crypt.h
|
78
|
+
- ext/mri/wrapper.c
|
79
|
+
- ext/mri/x86.S
|
80
|
+
- lib/bcrypt.rb
|
81
|
+
- lib/bcrypt/engine.rb
|
82
|
+
- lib/bcrypt/error.rb
|
83
|
+
- lib/bcrypt/password.rb
|
84
|
+
- lib/bcrypt_ext.jar
|
85
|
+
- spec/TestBCrypt.java
|
86
|
+
- spec/bcrypt/engine_spec.rb
|
87
|
+
- spec/bcrypt/error_spec.rb
|
88
|
+
- spec/bcrypt/password_spec.rb
|
89
|
+
- spec/spec_helper.rb
|
90
|
+
homepage: https://github.com/codahale/bcrypt-ruby
|
91
|
+
licenses:
|
92
|
+
- MIT
|
93
|
+
metadata: {}
|
94
|
+
post_install_message:
|
95
|
+
rdoc_options:
|
96
|
+
- "--title"
|
97
|
+
- bcrypt-ruby
|
98
|
+
- "--line-numbers"
|
99
|
+
- "--inline-source"
|
100
|
+
- "--main"
|
101
|
+
- README.md
|
102
|
+
require_paths:
|
103
|
+
- lib
|
104
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
105
|
+
requirements:
|
106
|
+
- - ">="
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
version: '0'
|
109
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
110
|
+
requirements:
|
111
|
+
- - ">="
|
112
|
+
- !ruby/object:Gem::Version
|
113
|
+
version: '0'
|
114
|
+
requirements: []
|
115
|
+
rubygems_version: 3.0.6
|
116
|
+
signing_key:
|
117
|
+
specification_version: 4
|
118
|
+
summary: OpenBSD's bcrypt() password hashing algorithm.
|
119
|
+
test_files: []
|