lookout-bcrypt 3.2.0-java

Sign up to get free protection for your applications and to get access to all the features.
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: java
6
+ authors:
7
+ - Coda Hale
8
+ - Ariel Salomon
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2015-01-27 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
+ extra_rdoc_files:
64
+ - README.md
65
+ - COPYING
66
+ - CHANGELOG
67
+ - lib/bcrypt.rb
68
+ - lib/bcrypt/engine.rb
69
+ - lib/bcrypt/error.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
+ - bcrypt.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_gensalt.c
88
+ - ext/mri/extconf.rb
89
+ - ext/mri/ow-crypt.h
90
+ - ext/mri/wrapper.c
91
+ - lib/bcrypt.rb
92
+ - lib/bcrypt/engine.rb
93
+ - lib/bcrypt/error.rb
94
+ - lib/bcrypt/password.rb
95
+ - spec/TestBCrypt.java
96
+ - spec/bcrypt/engine_spec.rb
97
+ - spec/bcrypt/error_spec.rb
98
+ - spec/bcrypt/password_spec.rb
99
+ - spec/spec_helper.rb
100
+ - lib/bcrypt_ext.jar
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: []