Module Values.CustomExtensionSource

Specifies the X.509 extension information for a certificate. Extensions present in CustomExtensions follow the ApiPassthrough template rules.

Sourcetype nonrec t = {
  1. objectIdentifier : CustomObjectIdentifier.t;
    (*

    Specifies the object identifier (OID) of the X.509 extension. For more information, see the Global OID reference database.

    *)
  2. value : Base64String1To4096.t;
    (*

    Specifies the base64-encoded value of the X.509 extension.

    *)
  3. critical : Boolean.t option;
    (*

    Specifies the critical flag of the X.509 extension.

    *)
}
Sourceval context_ : string
Sourceval make : ?critical:??? -> objectIdentifier:CustomObjectIdentifier.t -> value:Base64String1To4096.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of CustomObjectIdentifier.t ]) 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