2025-12-15 16:43:49 +01:00
|
|
|
open Crypto
|
|
|
|
|
|
2026-02-17 09:30:20 +01:00
|
|
|
(* 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;
|
2026-02-17 09:30:20 +01:00
|
|
|
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
|
|
|
}
|