argon2id 0.1.0-aarch64-linux

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,129 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: argon2id
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: aarch64-linux
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/3.1/argon2id.so
89
+ - lib/3.2/argon2id.so
90
+ - lib/3.3/argon2id.so
91
+ - lib/argon2id.rb
92
+ - lib/argon2id/password.rb
93
+ - lib/argon2id/version.rb
94
+ - test/test_hash_encoded.rb
95
+ - test/test_password.rb
96
+ - test/test_verify.rb
97
+ homepage: https://github.com/mudge/argon2id
98
+ licenses:
99
+ - BSD-3-Clause
100
+ metadata:
101
+ bug_tracker_uri: https://github.com/mudge/argon2id/issues
102
+ changelog_uri: https://github.com/mudge/argon2id/blob/main/CHANGELOG.md
103
+ funding_uri: https://github.com/sponsors/mudge
104
+ homepage_uri: https://github.com/mudge/argon2id
105
+ source_code_uri: https://github.com/mudge/argon2id
106
+ rubygems_mfa_required: 'true'
107
+ post_install_message:
108
+ rdoc_options: []
109
+ require_paths:
110
+ - lib
111
+ required_ruby_version: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - ">="
114
+ - !ruby/object:Gem::Version
115
+ version: '2.6'
116
+ - - "<"
117
+ - !ruby/object:Gem::Version
118
+ version: 3.4.dev
119
+ required_rubygems_version: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - ">="
122
+ - !ruby/object:Gem::Version
123
+ version: '0'
124
+ requirements: []
125
+ rubygems_version: 3.3.26
126
+ signing_key:
127
+ specification_version: 4
128
+ summary: Ruby bindings to Argon2
129
+ test_files: []