JJ: Description from the destination commit:

rename

JJ: Description from source commit:
.
This commit is contained in:
swrup 2026-02-17 09:30:20 +01:00
parent 24b9adc300
commit 2a4467a5aa
10 changed files with 414 additions and 467 deletions

11
src/signkey.ml Normal file
View file

@ -0,0 +1,11 @@
open Crypto
(* TODO replace by Api.SignKey.t instead? (no revoked_sig) *)
type t = {
pub: eddsa_pub;
stamp_start: Timestamp.t;
stamp_expire: Timestamp.t;
stamp_end: Timestamp.t;
master_sig: Signatures.ExchangeSigningKeyValidity.t;
revoked_sig: Signatures.MasterSigningKeyRevocation.t option;
}