package conex

  1. Overview
  2. Docs

Private key operations and handling

module type S = sig ... end

The private key module type

module type FS = sig ... end

A simple IO module type for certain private key operations.

module type S_RSA_BACK = sig ... end

The RSA backend module type

module Make (C : S_RSA_BACK) (F : FS) : S

Given a RSA backend, instantiate the private key module type S.