From 1a1ac5cd439ad8df98f43c5fce90ba57325d2b72 Mon Sep 17 00:00:00 2001 From: Shibo Lyu Date: Thu, 5 Sep 2024 04:23:30 +0800 Subject: [PATCH] feat: [wip] keybox --- src/lib/blah/structures/keybox.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/lib/blah/structures/keybox.ts diff --git a/src/lib/blah/structures/keybox.ts b/src/lib/blah/structures/keybox.ts new file mode 100644 index 0000000..9b8e127 --- /dev/null +++ b/src/lib/blah/structures/keybox.ts @@ -0,0 +1,8 @@ +import type { BlahSignedPayload } from '../crypto'; + +export type BlahActKeyEntry = { + exp: number; +}; +export type BlahSignedActKeyEntry = BlahSignedPayload; + +export type BlahKeyBox = BlahSignedPayload;