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 / signatures / ed25519.rb

# encoding: binary
module RbNaCl
  module Signatures
    module Ed25519
      extend Sodium

      sodium_type      :sign
      sodium_primitive :ed25519
      sodium_constant  :SEEDBYTES
      sodium_constant  :PUBLICKEYBYTES, :VERIFYKEYBYTES
      sodium_constant  :SECRETKEYBYTES, :SIGNINGKEYBYTES
      sodium_constant  :BYTES,          :SIGNATUREBYTES
    end
  end
end