bcrypt 3.1.15-java

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,2 @@
1
+ $:.unshift File.expand_path('../../lib', __FILE__)
2
+ require 'bcrypt'
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: []