// TODO, is there a better way of getting the algo type? export type Algo = Parameters[2]; export const encrAlgo = { name: "AES-GCM", length: 256 } satisfies Algo; export const signAlgo = { name: "ES256" } satisfies Algo;