Sha256: dc5e6ce024876b9fb21bd4aacc5e146eaf2d3ab8f33b2bbddd644f44bbf74a18

Contents?: true

Size: 1.08 KB

Versions: 15

Compression:

Stored size: 1.08 KB

Contents

module Net 
  module SSH 
    module Authentication

      # Loads ED25519 support which requires optinal dependecies like
      # ed25519, bcrypt_pbkdf
      module ED25519Loader
      
        begin
          require 'net/ssh/authentication/ed25519'
          LOADED = true
          ERROR = nil
        rescue LoadError => e
          ERROR = e
          LOADED = false
        end
      
        def self.raiseUnlessLoaded(message)
          description = ERROR.is_a?(LoadError) ? dependenciesRequiredForED25519 : ''
          description << "#{ERROR.class} : \"#{ERROR.message}\"\n" if ERROR
          raise NotImplementedError, "#{message}\n#{description}" unless LOADED
        end
      
        def self.dependenciesRequiredForED25519
          result = "net-ssh requires the following gems for ed25519 support:\n"
          result << " * ed25519 (>= 1.2, < 2.0)\n"
          result << " * bcrypt_pbkdf (>= 1.0, < 2.0)\n" unless RUBY_PLATFORM == "java"
          result << "See https://github.com/net-ssh/net-ssh/issues/565 for more information\n"
        end
      
      end
    end
  end
end

Version data entries

15 entries across 14 versions & 2 rubygems

Version Path
vagrant-unbundled-2.2.19.0 vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/ed25519_loader.rb
vagrant-unbundled-2.2.18.0 vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/ed25519_loader.rb
vagrant-unbundled-2.2.16.0 vendor/bundle/ruby/2.7.0/gems/net-ssh-6.2.0.rc1/lib/net/ssh/authentication/ed25519_loader.rb
vagrant-unbundled-2.2.16.0 vendor/bundle/ruby/3.0.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/ed25519_loader.rb
net-ssh-6.2.0.rc2 lib/net/ssh/authentication/ed25519_loader.rb
vagrant-unbundled-2.2.14.0 vendor/bundle/ruby/2.7.0/gems/net-ssh-6.2.0.rc1/lib/net/ssh/authentication/ed25519_loader.rb
vagrant-unbundled-2.2.10.0 vendor/bundle/ruby/2.7.0/gems/net-ssh-6.1.0/lib/net/ssh/authentication/ed25519_loader.rb
net-ssh-6.2.0.rc1 lib/net/ssh/authentication/ed25519_loader.rb
net-ssh-6.2.0.beta1 lib/net/ssh/authentication/ed25519_loader.rb
net-ssh-6.1.0 lib/net/ssh/authentication/ed25519_loader.rb
net-ssh-6.1.0.rc1 lib/net/ssh/authentication/ed25519_loader.rb
net-ssh-6.0.2 lib/net/ssh/authentication/ed25519_loader.rb
net-ssh-6.0.1 lib/net/ssh/authentication/ed25519_loader.rb
net-ssh-6.0.0 lib/net/ssh/authentication/ed25519_loader.rb
net-ssh-6.0.0.rc1 lib/net/ssh/authentication/ed25519_loader.rb