+ secmod; + .master_sig

This commit is contained in:
swrup 2025-10-19 01:10:52 +02:00
parent bc6ea09a59
commit d938b17d2b
5 changed files with 32 additions and 12 deletions

View file

@ -1,6 +1,16 @@
(* TODO
better types to not mixup keys maybe
.. *)
module Secmod_signkey = struct
type t = {
secmod_public_key: Signkey.t;
signkeys: Signkey.t list;
}
end
module Secmod_denom = struct
type t = {
secmod_signkey: Signkey.t;
denom_keys: Denomination.t list;
}
end
let signkey = Signkey.make ~name:"signkey"
let online_key = Signkey.make ~name:"online_key"