argon2id 0.1.0-x64-mingw32

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.
metadata ADDED
@@ -0,0 +1,126 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: argon2id
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: x64-mingw32
6
+ authors:
7
+ - Paul Mucur
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-10-31 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: '1.2'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.2'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake-compiler-dock
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.5'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.5'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '5.25'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '5.25'
55
+ description: Ruby bindings to the reference C implementation of Argon2, the password-hashing
56
+ function that won the 2015 Password Hashing Competition.
57
+ email:
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - CHANGELOG.md
63
+ - Gemfile
64
+ - LICENSE
65
+ - README.md
66
+ - Rakefile
67
+ - argon2id.gemspec
68
+ - ext/argon2id/argon2id.c
69
+ - ext/argon2id/extconf.rb
70
+ - ext/argon2id/libargon2/LICENSE
71
+ - ext/argon2id/libargon2/argon2.c
72
+ - ext/argon2id/libargon2/argon2.h
73
+ - ext/argon2id/libargon2/blake2/blake2-impl.h
74
+ - ext/argon2id/libargon2/blake2/blake2.h
75
+ - ext/argon2id/libargon2/blake2/blake2b.c
76
+ - ext/argon2id/libargon2/blake2/blamka-round-opt.h
77
+ - ext/argon2id/libargon2/blake2/blamka-round-ref.h
78
+ - ext/argon2id/libargon2/core.c
79
+ - ext/argon2id/libargon2/core.h
80
+ - ext/argon2id/libargon2/encoding.c
81
+ - ext/argon2id/libargon2/encoding.h
82
+ - ext/argon2id/libargon2/ref.c
83
+ - ext/argon2id/libargon2/thread.c
84
+ - ext/argon2id/libargon2/thread.h
85
+ - lib/2.6/argon2id.so
86
+ - lib/2.7/argon2id.so
87
+ - lib/3.0/argon2id.so
88
+ - lib/argon2id.rb
89
+ - lib/argon2id/password.rb
90
+ - lib/argon2id/version.rb
91
+ - test/test_hash_encoded.rb
92
+ - test/test_password.rb
93
+ - test/test_verify.rb
94
+ homepage: https://github.com/mudge/argon2id
95
+ licenses:
96
+ - BSD-3-Clause
97
+ metadata:
98
+ bug_tracker_uri: https://github.com/mudge/argon2id/issues
99
+ changelog_uri: https://github.com/mudge/argon2id/blob/main/CHANGELOG.md
100
+ funding_uri: https://github.com/sponsors/mudge
101
+ homepage_uri: https://github.com/mudge/argon2id
102
+ source_code_uri: https://github.com/mudge/argon2id
103
+ rubygems_mfa_required: 'true'
104
+ post_install_message:
105
+ rdoc_options: []
106
+ require_paths:
107
+ - lib
108
+ required_ruby_version: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: '2.6'
113
+ - - "<"
114
+ - !ruby/object:Gem::Version
115
+ version: 3.1.dev
116
+ required_rubygems_version: !ruby/object:Gem::Requirement
117
+ requirements:
118
+ - - ">="
119
+ - !ruby/object:Gem::Version
120
+ version: '0'
121
+ requirements: []
122
+ rubygems_version: 3.3.26
123
+ signing_key:
124
+ specification_version: 4
125
+ summary: Ruby bindings to Argon2
126
+ test_files: []