-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathballoon_hashing.gemspec
More file actions
36 lines (29 loc) · 1.24 KB
/
balloon_hashing.gemspec
File metadata and controls
36 lines (29 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# frozen_string_literal: true
require_relative "lib/balloon_hashing/version"
Gem::Specification.new do |s|
s.name = "balloon_hashing"
s.version = BalloonHashing::VERSION
s.authors = ["Suleyman Musayev"]
s.email = ["slmusayev@gmail.com"]
s.summary = "Balloon Hashing: a memory-hard password hashing function " \
"with provable security guarantees."
s.description = "Pure Ruby implementation of the Balloon Hashing algorithm " \
"(Boneh, Corrigan-Gibbs, Schechter 2016). Supports SHA-256, " \
"SHA-512, and BLAKE2b. Memory-hard with provable protection " \
"against sequential attacks."
s.homepage = "https://github.com/msuliq/balloon_hashing"
s.license = "MIT"
s.metadata = {
"rubygems_mfa_required" => "true",
"homepage_uri" => s.homepage,
"source_code_uri" => s.homepage,
"changelog_uri" => "#{s.homepage}/blob/master/CHANGELOG.md"
}
s.required_ruby_version = ">= 2.7.0"
s.files = Dir["lib/**/*.rb", "LICENSE", "README.md", "CHANGELOG.md"]
s.require_paths = ["lib"]
s.add_dependency "base64"
s.add_development_dependency "bundler", ">= 2.0"
s.add_development_dependency "minitest", "~> 5.0"
s.add_development_dependency "rake", "~> 13.0"
end