export { deriveAuthSecret, deriveAuthAndEncKeys, generateDek, wrapDek, unwrapDek, rewrapDek, setupEncryption, unlockWithPassword, unlockWithRecovery, generateIdentityKeyPair, wrapIdentityPrivateKey, unwrapIdentityPrivateKey, generateProfileDek, wrapProfileDek, unwrapProfileDek, setEncKey, getEncKey, clearEncKey, hasEncKey, setIdentityPrivate, getIdentityPrivate, clearIdentityPrivate, hasIdentityPrivate, setProfileDek, getProfileDek, setActiveProfileId, getActiveProfileId, getActiveProfileDek, clearProfileDeks, AUTH_SALT, PASSWORD_KEK_SALT, RECOVERY_KEK_SALT, type EncryptionSetup, type UnlockResult, } from './keys'; export { encrypt, decrypt, encryptJson, decryptJson, type CipherPayload, } from './cipher';