Skip to content

Commit 0296b24

Browse files
authored
Revert "Add BLAKE3 support in Digest"
1 parent 33698a7 commit 0296b24

19 files changed

Lines changed: 2 additions & 5603 deletions

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,6 @@ SHA2 family::
7878
SHA512
7979
SHA384
8080
SHA256
81-
BLAKE3::
82-
As Digest::BLAKE3, producing a 256-bit digest.
83-
See https://github.com/BLAKE3-team/BLAKE3.
8481
```
8582

8683
The latest versions of the FIPS publications can be found here: http://csrc.nist.gov/publications/PubsFIPS.html.

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if RUBY_ENGINE == "jruby"
2424
else
2525
require "rake/extensiontask"
2626
Rake::ExtensionTask.new("digest")
27-
%w[bubblebabble md5 rmd160 sha1 sha2 crc32 blake3].each do |ext|
27+
%w[bubblebabble md5 rmd160 sha1 sha2 crc32].each do |ext|
2828
Rake::ExtensionTask.new("digest/#{ext}")
2929
end
3030
end

digest.gemspec

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,6 @@ Gem::Specification.new do |spec|
3737
spec.extensions = Dir["ext/digest/**/extconf.rb"]
3838

3939
spec.files += Dir["ext/digest/**/{*.{rb,c,h,sh},depend}"]
40-
# Vendored third-party license files (e.g. BLAKE3's LICENSE_*), which
41-
# carry no filename extension and are missed by the glob above.
42-
spec.files += Dir["ext/digest/**/LICENSE*"]
4340
spec.require_paths = %w[lib]
4441
end
4542

ext/digest/blake3/LICENSE_A2

Lines changed: 0 additions & 202 deletions
This file was deleted.

0 commit comments

Comments
 (0)