Module Values.CsrExtensionsSource

Describes the certificate extensions to be added to the certificate signing request (CSR).

Sourcetype nonrec t = {
  1. keyUsage : KeyUsage.t option;
    (*

    Indicates the purpose of the certificate and of the key contained in the certificate.

    *)
  2. subjectInformationAccess : AccessDescriptionList.t option;
    (*

    For CA certificates, provides a path to additional information pertaining to the CA, such as revocation and policy. For more information, see Subject Information Access in RFC 5280.

    *)
}
Sourceval make : ?keyUsage:??? -> ?subjectInformationAccess:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of CustomObjectIdentifier.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of CustomObjectIdentifier.t ]) list ] list | `String of CustomObjectIdentifier.t ]) list ]) list ]) list ] list | `Structure of (string * [> `Boolean of Boolean.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t