package ssh-agent

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t =
  1. | Ssh_dss of ssh_dss
  2. | Ssh_rsa of ssh_rsa
  3. | Ssh_rsa_cert of ssh_rsa * Pubkey.ssh_rsa_cert
    (*

    Ssh_rsa_cert (key, cert) is a private key with a certificate for said key.

    *)
  4. | Ssh_ed25519 of ssh_ed25519
  5. | Blob of {
    1. key_type : string;
    2. key_blob : string;
    }
    (*

    Blob is an unknown ssh wire string-unwrapped private key of type * key_type.

    *)