Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

vistahigherlearning / logstash   deb

Repository URL to install this package:

/ opt / logstash / vendor / bundle / jruby / 1.9 / gems / rbnacl-2.0.0 / lib / rbnacl / hash / sha256.rb

# encoding: binary
module RbNaCl
  module Hash
    # Provides a binding for the SHA256 function in libsodium
    module SHA256
      extend Sodium
      sodium_type      :hash
      sodium_primitive :sha256
      sodium_constant  :BYTES
      sodium_function  :hash_sha256,
        :crypto_hash_sha256,
        [:pointer, :pointer, :ulong_long]
    end
  end
end