ssh-agent
Ssh_agent.Privkey
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 =
| Ssh_dss of ssh_dss
| Ssh_rsa of ssh_rsa
| Blob of {
key_type : string;
key_blob : string;
}
Blob is an unknown ssh wire string-unwrapped private key of type * key_type.
Blob
key_type
val sexp_of_t : t -> Ppx_sexp_conv_lib.Sexp.t