Module Values.ExtendedKeyUsageSource

Specifies additional purposes for which the certified public key may be used other than basic purposes indicated in the KeyUsage extension.

Sourcetype nonrec t = {
  1. extendedKeyUsageType : ExtendedKeyUsageType.t option;
    (*

    Specifies a standard ExtendedKeyUsage as defined as in RFC 5280.

    *)
  2. extendedKeyUsageObjectIdentifier : CustomObjectIdentifier.t option;
    (*

    Specifies a custom ExtendedKeyUsage with an object identifier (OID).

    *)
}
Sourceval make : ?extendedKeyUsageType:??? -> ?extendedKeyUsageObjectIdentifier:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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