Implement JWT

This commit is contained in:
2024-06-06 13:13:21 +02:00
parent c05f0536e2
commit 544a2a55a5
3 changed files with 176 additions and 0 deletions
+1
View File
@@ -2,6 +2,7 @@ import {hkdf, pbkdf, Usage} from "./src/kdf"
export const kdf = {hkdf, pbkdf, Usage}
export * as signature from "./src/signature"
export * as JWT from "./src/jwt"
export {SecretBox} from './src/secret-box'
export {PrivateWrap} from './src/private-wrap'
export {SecretWrap} from './src/secret-wrap'