wip secmod
This commit is contained in:
parent
77d5327745
commit
1e30753ba9
13 changed files with 465 additions and 546 deletions
11
src/signkey.ml
Normal file
11
src/signkey.ml
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue