hirura/hrr_rb_ssh-ed25519

View on GitHub
lib/hrr_rb_ssh/algorithm/publickey/ssh_ed25519/signature.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'hrr_rb_ssh/codable'

module HrrRbSsh
  module Algorithm
    class Publickey
      class SshEd25519
        class Signature
          include Codable
          DEFINITION = [
            [DataTypes::String, :'public key algorithm name'],
            [DataTypes::String, :'signature blob'],
          ]
        end
      end
    end
  end
end