package bip32

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type 'a t = private {
  1. k : 'a Secp256k1.Key.t;
  2. c : Cstruct.t;
  3. path : Int32.t list;
  4. parent : Cstruct.t;
}
module type CRYPTO = sig ... end
module type S = sig ... end
module Make (Crypto : CRYPTO) : S