package ssh-agent

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type ssh_dss = Nocrypto.Dsa.priv
val sexp_of_ssh_dss : ssh_dss -> Ppx_sexp_conv_lib.Sexp.t
type ssh_rsa = Nocrypto.Rsa.priv
val sexp_of_ssh_rsa : ssh_rsa -> Ppx_sexp_conv_lib.Sexp.t
type t =
  1. | Ssh_dss of ssh_dss
  2. | Ssh_rsa of ssh_rsa
  3. | 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 -> Ppx_sexp_conv_lib.Sexp.t