bcrypt4 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
metadata ADDED
@@ -0,0 +1,132 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bcrypt4
3
+ version: !ruby/object:Gem::Version
4
+ version: 4.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Coda Hale
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-07-17 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake-compiler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.9.2
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
+ name: rspec
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '3'
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
+ - !ruby/object:Gem::Dependency
42
+ name: rdoc
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.12'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.12'
55
+ description: |2
56
+ bcrypt() is a sophisticated and secure hash algorithm designed by The OpenBSD project
57
+ for hashing passwords. The bcrypt Ruby gem provides a simple wrapper for safely handling
58
+ passwords.
59
+ email: coda.hale@gmail.com
60
+ executables: []
61
+ extensions:
62
+ - ext/mri/extconf.rb
63
+ extra_rdoc_files:
64
+ - README.md
65
+ - COPYING
66
+ - CHANGELOG
67
+ - lib/bcrypt.rb
68
+ - lib/bcrypt/error.rb
69
+ - lib/bcrypt/engine.rb
70
+ - lib/bcrypt/password.rb
71
+ files:
72
+ - ".gitignore"
73
+ - ".rspec"
74
+ - ".travis.yml"
75
+ - CHANGELOG
76
+ - COPYING
77
+ - Gemfile
78
+ - Gemfile.lock
79
+ - README.md
80
+ - Rakefile
81
+ - bcrypt4.gemspec
82
+ - ext/jruby/bcrypt_jruby/BCrypt.java
83
+ - ext/mri/bcrypt_ext.c
84
+ - ext/mri/crypt.c
85
+ - ext/mri/crypt.h
86
+ - ext/mri/crypt_blowfish.c
87
+ - ext/mri/crypt_blowfish.h
88
+ - ext/mri/crypt_gensalt.c
89
+ - ext/mri/crypt_gensalt.h
90
+ - ext/mri/extconf.rb
91
+ - ext/mri/ow-crypt.h
92
+ - ext/mri/wrapper.c
93
+ - lib/bcrypt.rb
94
+ - lib/bcrypt/engine.rb
95
+ - lib/bcrypt/error.rb
96
+ - lib/bcrypt/password.rb
97
+ - spec/TestBCrypt.java
98
+ - spec/bcrypt/engine_spec.rb
99
+ - spec/bcrypt/error_spec.rb
100
+ - spec/bcrypt/password_spec.rb
101
+ - spec/spec_helper.rb
102
+ homepage: https://github.com/dissolve/bcrypt-ruby
103
+ licenses:
104
+ - MIT
105
+ metadata: {}
106
+ post_install_message:
107
+ rdoc_options:
108
+ - "--title"
109
+ - bcrypt-ruby
110
+ - "--line-numbers"
111
+ - "--inline-source"
112
+ - "--main"
113
+ - README.md
114
+ require_paths:
115
+ - lib
116
+ required_ruby_version: !ruby/object:Gem::Requirement
117
+ requirements:
118
+ - - ">="
119
+ - !ruby/object:Gem::Version
120
+ version: '0'
121
+ required_rubygems_version: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - ">="
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
+ requirements: []
127
+ rubyforge_project:
128
+ rubygems_version: 2.5.2
129
+ signing_key:
130
+ specification_version: 4
131
+ summary: OpenBSD's bcrypt() password hashing algorithm.
132
+ test_files: []