class OpenSSL::PKey::DSA

with SSH functionality.
have been added to it by the Net::SSH module for convenience in dealing
This class is originally defined in the OpenSSL module. As needed, methods

def ssh_do_sign(data)

Signs the given data.
def ssh_do_sign(data)
  sig = sign( OpenSSL::Digest::DSS1.new, data)
  a1sig = OpenSSL::ASN1.decode( sig )
  sig_r = a1sig.value[0].value.to_s(2)
  sig_s = a1sig.value[1].value.to_s(2)
  if sig_r.length > 20 || sig_s.length > 20
    raise OpenSSL::PKey::DSAError, "bad sig size"
  end
  sig_r = "\0" * ( 20 - sig_r.length ) + sig_r if sig_r.length < 20
  sig_s = "\0" * ( 20 - sig_s.length ) + sig_s if sig_s.length < 20
  return sig_r + sig_s
end

def ssh_do_verify(sig, data)

Verifies the given signature matches the given data.
def ssh_do_verify(sig, data)
  sig_r = sig[0,20].unpack("H*")[0].to_i(16)
  sig_s = sig[20,20].unpack("H*")[0].to_i(16)
  a1sig = OpenSSL::ASN1::Sequence([
     OpenSSL::ASN1::Integer(sig_r),
     OpenSSL::ASN1::Integer(sig_s)
  ])
  return verify(OpenSSL::Digest::DSS1.new, a1sig.to_der, data)
end

def ssh_type

SSH2 protocol.
Returns "ssh-dss", which is the description of this key type used by the
def ssh_type
  "ssh-dss"
end

def to_blob

Converts the key to a blob, according to the SSH2 protocol.
def to_blob
  @blob ||= Net::SSH::Buffer.from(:string, ssh_type,
    :bignum, p, :bignum, q, :bignum, g, :bignum, pub_key).to_s
end