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