ruby-fastpbkdf2 0.0.1

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,107 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruby-fastpbkdf2
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - TwilightCoders
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 2025-07-25 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: rake
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '13.0'
19
+ type: :development
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: '13.0'
26
+ - !ruby/object:Gem::Dependency
27
+ name: rake-compiler
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - "~>"
31
+ - !ruby/object:Gem::Version
32
+ version: '1.0'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '1.0'
40
+ - !ruby/object:Gem::Dependency
41
+ name: rspec
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '3.0'
47
+ type: :development
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '3.0'
54
+ description: Ruby bindings for the fastpbkdf2 C library, providing 10-50x performance
55
+ improvements over Ruby's built-in PBKDF2 implementation.
56
+ email:
57
+ - hello@twilightcoders.net
58
+ executables: []
59
+ extensions:
60
+ - ext/fastpbkdf2/extconf.rb
61
+ extra_rdoc_files: []
62
+ files:
63
+ - CHANGELOG.md
64
+ - LICENSE.txt
65
+ - README.md
66
+ - ext/fastpbkdf2/endian.h
67
+ - ext/fastpbkdf2/extconf.rb
68
+ - ext/fastpbkdf2/fastpbkdf2.c
69
+ - ext/fastpbkdf2/fastpbkdf2.h
70
+ - ext/fastpbkdf2/fastpbkdf2_ruby.c
71
+ - ext/fastpbkdf2/fastpbkdf2_ruby.o
72
+ - ext/fastpbkdf2/fastpbkdf2_wrapper.c
73
+ - ext/fastpbkdf2/fastpbkdf2_wrapper.h
74
+ - ext/fastpbkdf2/fastpbkdf2_wrapper.o
75
+ - lib/fastpbkdf2.rb
76
+ - lib/fastpbkdf2/fastpbkdf2.bundle
77
+ - lib/fastpbkdf2/version.rb
78
+ - vendor/fastpbkdf2/LICENSE
79
+ - vendor/fastpbkdf2/fastpbkdf2.c
80
+ - vendor/fastpbkdf2/fastpbkdf2.h
81
+ homepage: https://github.com/twilightcoders/ruby-fastpbkdf2
82
+ licenses:
83
+ - MIT
84
+ metadata:
85
+ homepage_uri: https://github.com/twilightcoders/ruby-fastpbkdf2
86
+ source_code_uri: https://github.com/twilightcoders/ruby-fastpbkdf2.git
87
+ changelog_uri: https://github.com/twilightcoders/ruby-fastpbkdf2/blob/main/CHANGELOG.md
88
+ documentation_uri: https://github.com/twilightcoders/ruby-fastpbkdf2
89
+ bug_tracker_uri: https://github.com/twilightcoders/ruby-fastpbkdf2/issues
90
+ rdoc_options: []
91
+ require_paths:
92
+ - lib
93
+ required_ruby_version: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ">="
96
+ - !ruby/object:Gem::Version
97
+ version: 2.7.0
98
+ required_rubygems_version: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ requirements: []
104
+ rubygems_version: 3.6.3
105
+ specification_version: 4
106
+ summary: High-performance PBKDF2 for Ruby
107
+ test_files: []