mirror of
https://github.com/fromchat-messenger/web.git
synced 2026-09-24 20:15:06 +03:00
8 lines
409 B
TypeScript
8 lines
409 B
TypeScript
// Re-export all crypto functions for convenience
|
|
export { generateX25519KeyPair, ecdhSharedSecret, deriveWrappingKey } from "./asymmetric";
|
|
export type { X25519KeyPair } from "./asymmetric";
|
|
export { importAesGcmKey, aesGcmEncrypt, aesGcmDecrypt } from "./symmetric";
|
|
export type { AesGcmCiphertext } from "./symmetric";
|
|
export { hkdfExtractAndExpand, randomBytes, importPassword, deriveKEK } from "./kdf";
|
|
|