Module Values.PublicKeySource

Contains information about a returned public key.

Sourcetype nonrec t = {
  1. value : ByteBuffer.t option;
    (*

    The DER encoded public key value in PKCS#1 format.

    *)
  2. validityStartTime : Date.t option;
    (*

    The starting time of validity of the public key.

    *)
  3. validityEndTime : Date.t option;
    (*

    The ending time of validity of the public key.

    *)
  4. fingerprint : String_.t option;
    (*

    The fingerprint of the public key.

    *)
}
Sourceval make : ?value:??? -> ?validityStartTime:??? -> ?validityEndTime:??? -> ?fingerprint:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of ByteBuffer.t | `String of String_.t | `Timestamp of Date.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