This commit is contained in:
swrup 2025-12-15 16:43:49 +01:00
parent 15c132829e
commit f0254c6f5d
9 changed files with 140 additions and 137 deletions

10
src/signkey_data.ml Normal file
View file

@ -0,0 +1,10 @@
open Crypto
type t = {
pub: eddsa_pub;
priv: eddsa_priv;
stamp_start: Timestamp.t;
stamp_expire: Timestamp.t;
stamp_end: Timestamp.t;
master_sig: Bin_sig.ExchangeSigningKeyValidity.t option;
}