digest-sha3 1.0.0
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.
- data/LICENSE +9 -0
 - data/Makefile +18 -0
 - data/README.md +50 -0
 - data/digest-sha3.gemspec +21 -0
 - data/ext/digest/KeccakF-1600-int-set.h +6 -0
 - data/ext/digest/KeccakF-1600-interface.h +46 -0
 - data/ext/digest/KeccakF-1600-reference.c +300 -0
 - data/ext/digest/KeccakNISTInterface.c +81 -0
 - data/ext/digest/KeccakNISTInterface.h +70 -0
 - data/ext/digest/KeccakSponge.c +266 -0
 - data/ext/digest/KeccakSponge.h +76 -0
 - data/ext/digest/brg_endian.h +142 -0
 - data/ext/digest/displayIntermediateValues.c +117 -0
 - data/ext/digest/displayIntermediateValues.h +29 -0
 - data/ext/digest/extconf.rb +3 -0
 - data/ext/digest/sha3.c +137 -0
 - data/lib/digest/sha3/helpers.rb +20 -0
 - data/lib/digest/sha3/version.rb +7 -0
 - metadata +64 -0
 
    
        metadata
    ADDED
    
    | 
         @@ -0,0 +1,64 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification
         
     | 
| 
      
 2 
     | 
    
         
            +
            name: digest-sha3
         
     | 
| 
      
 3 
     | 
    
         
            +
            version: !ruby/object:Gem::Version
         
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.0.0
         
     | 
| 
      
 5 
     | 
    
         
            +
              prerelease: 
         
     | 
| 
      
 6 
     | 
    
         
            +
            platform: ruby
         
     | 
| 
      
 7 
     | 
    
         
            +
            authors:
         
     | 
| 
      
 8 
     | 
    
         
            +
            - Hongli Lai (Phusion)
         
     | 
| 
      
 9 
     | 
    
         
            +
            - Keccak authors
         
     | 
| 
      
 10 
     | 
    
         
            +
            autorequire: 
         
     | 
| 
      
 11 
     | 
    
         
            +
            bindir: bin
         
     | 
| 
      
 12 
     | 
    
         
            +
            cert_chain: []
         
     | 
| 
      
 13 
     | 
    
         
            +
            date: 2012-10-06 00:00:00.000000000 Z
         
     | 
| 
      
 14 
     | 
    
         
            +
            dependencies: []
         
     | 
| 
      
 15 
     | 
    
         
            +
            description: The SHA-3 (Keccak) hash.
         
     | 
| 
      
 16 
     | 
    
         
            +
            email: hongli@phusion.nl
         
     | 
| 
      
 17 
     | 
    
         
            +
            executables: []
         
     | 
| 
      
 18 
     | 
    
         
            +
            extensions:
         
     | 
| 
      
 19 
     | 
    
         
            +
            - ext/digest/extconf.rb
         
     | 
| 
      
 20 
     | 
    
         
            +
            extra_rdoc_files: []
         
     | 
| 
      
 21 
     | 
    
         
            +
            files:
         
     | 
| 
      
 22 
     | 
    
         
            +
            - README.md
         
     | 
| 
      
 23 
     | 
    
         
            +
            - LICENSE
         
     | 
| 
      
 24 
     | 
    
         
            +
            - Makefile
         
     | 
| 
      
 25 
     | 
    
         
            +
            - digest-sha3.gemspec
         
     | 
| 
      
 26 
     | 
    
         
            +
            - ext/digest/displayIntermediateValues.c
         
     | 
| 
      
 27 
     | 
    
         
            +
            - ext/digest/KeccakF-1600-reference.c
         
     | 
| 
      
 28 
     | 
    
         
            +
            - ext/digest/KeccakNISTInterface.c
         
     | 
| 
      
 29 
     | 
    
         
            +
            - ext/digest/KeccakSponge.c
         
     | 
| 
      
 30 
     | 
    
         
            +
            - ext/digest/sha3.c
         
     | 
| 
      
 31 
     | 
    
         
            +
            - ext/digest/brg_endian.h
         
     | 
| 
      
 32 
     | 
    
         
            +
            - ext/digest/displayIntermediateValues.h
         
     | 
| 
      
 33 
     | 
    
         
            +
            - ext/digest/KeccakF-1600-int-set.h
         
     | 
| 
      
 34 
     | 
    
         
            +
            - ext/digest/KeccakF-1600-interface.h
         
     | 
| 
      
 35 
     | 
    
         
            +
            - ext/digest/KeccakNISTInterface.h
         
     | 
| 
      
 36 
     | 
    
         
            +
            - ext/digest/KeccakSponge.h
         
     | 
| 
      
 37 
     | 
    
         
            +
            - ext/digest/extconf.rb
         
     | 
| 
      
 38 
     | 
    
         
            +
            - lib/digest/sha3/helpers.rb
         
     | 
| 
      
 39 
     | 
    
         
            +
            - lib/digest/sha3/version.rb
         
     | 
| 
      
 40 
     | 
    
         
            +
            homepage: https://github.com/phusion/digest-sha3-ruby
         
     | 
| 
      
 41 
     | 
    
         
            +
            licenses: []
         
     | 
| 
      
 42 
     | 
    
         
            +
            post_install_message: 
         
     | 
| 
      
 43 
     | 
    
         
            +
            rdoc_options: []
         
     | 
| 
      
 44 
     | 
    
         
            +
            require_paths:
         
     | 
| 
      
 45 
     | 
    
         
            +
            - lib
         
     | 
| 
      
 46 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 47 
     | 
    
         
            +
              none: false
         
     | 
| 
      
 48 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 49 
     | 
    
         
            +
              - - ! '>='
         
     | 
| 
      
 50 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 51 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 52 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 53 
     | 
    
         
            +
              none: false
         
     | 
| 
      
 54 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 55 
     | 
    
         
            +
              - - ! '>='
         
     | 
| 
      
 56 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 57 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 58 
     | 
    
         
            +
            requirements: []
         
     | 
| 
      
 59 
     | 
    
         
            +
            rubyforge_project: 
         
     | 
| 
      
 60 
     | 
    
         
            +
            rubygems_version: 1.8.24
         
     | 
| 
      
 61 
     | 
    
         
            +
            signing_key: 
         
     | 
| 
      
 62 
     | 
    
         
            +
            specification_version: 3
         
     | 
| 
      
 63 
     | 
    
         
            +
            summary: The SHA-3 (Keccak) hash
         
     | 
| 
      
 64 
     | 
    
         
            +
            test_files: []
         
     |