package ssh-agent

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val sexp_of_ssh_dss : ssh_dss -> Sexplib0.Sexp.t
val sexp_of_ssh_rsa : ssh_rsa -> Sexplib0.Sexp.t
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. | Blob of {
    1. key_type : string;
    2. key_blob : string;
    }
    (*

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

    *)
val sexp_of_t : t -> Sexplib0.Sexp.t