mte/src/signkey.ml

12 lines
307 B
OCaml
Raw Normal View History

2025-12-15 16:43:49 +01:00
open Crypto
(* TODO replace by Api.SignKey.t instead? (no revoked_sig) *)
2025-12-15 16:43:49 +01:00
type t = {
pub: eddsa_pub;
stamp_start: Timestamp.t;
stamp_expire: Timestamp.t;
stamp_end: Timestamp.t;
master_sig: Signatures.ExchangeSigningKeyValidity.t;
2026-02-05 19:26:59 +01:00
revoked_sig: Signatures.MasterSigningKeyRevocation.t option;
2025-12-15 16:43:49 +01:00
}