10 lines
252 B
OCaml
10 lines
252 B
OCaml
open Crypto
|
|
|
|
type t = {
|
|
pub: eddsa_pub;
|
|
stamp_start: Timestamp.t;
|
|
stamp_expire: Timestamp.t;
|
|
stamp_end: Timestamp.t;
|
|
master_sig: Signatures.ExchangeSigningKeyValidity.t option;
|
|
revoked_sig: Signatures.MasterSigningKeyRevocation.t option;
|
|
}
|