feat: [wip] keybox

This commit is contained in:
Shibo Lyu 2024-09-05 04:23:30 +08:00
parent 071ffe1f81
commit 1a1ac5cd43

View file

@ -0,0 +1,8 @@
import type { BlahSignedPayload } from '../crypto';
export type BlahActKeyEntry = {
exp: number;
};
export type BlahSignedActKeyEntry = BlahSignedPayload<BlahActKeyEntry>;
export type BlahKeyBox = BlahSignedPayload<BlahSignedActKeyEntry[]>;