Module Conex_private

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 : functor (C : S_RSA_BACK) -> functor (F : FS) -> S

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