package bip32

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type secret = Secp256k1.Secret.t
type public = Secp256k1.Public.t
type _ kind =
  1. | Sk : secret -> secret kind
  2. | Pk : public -> public kind
type 'a key = private {
  1. k : 'a kind;
  2. c : Cstruct.t;
  3. path : Stdlib.Int32.t list;
  4. parent : Cstruct.t;
}
module type CRYPTO = sig ... end
module type S = sig ... end
module Make (Crypto : CRYPTO) : S
OCaml

Innovation. Community. Security.