import { AeadResult, KemEncapResult, KemKeypair, SecretShareLike } from "../provider.mjs"; import { SecretShare, aesGcmDecrypt, aesGcmEncrypt, blake2s256, buildContext, canonicalAad, computeSummary, constantTimeEq, deriveCek, deriveKid, deriveSymmetricKid, fromBase64Url, fromHex, generateCek, generateNonceAesGcm, generateNonceXchacha, generateUuid, hkdfExpand, hkdfJoin, kemDecapsulate, kemEncapsulate, kemGenerateKeypair, kemUnwrapCek, kemWrapCek, keyCommitment, randomBytes, sha256, shamirReconstruct, shamirSplit, shamirSplitAndWrap, shamirUnwrapAndReconstruct, toBase64Url, toHex, verifyKeyCommitment, xchachaDecrypt, xchachaEncrypt } from "../index.mjs"; //#region src/crypto/wasm/VaultCrypto.d.ts /** * Legacy no-op initializer. WASM is auto-initialized in the Node provider; the * RN provider does not need initialization. Kept for back-compat. */ declare function initVaultCrypto(): Promise; //#endregion export { initVaultCrypto }; //# sourceMappingURL=VaultCrypto.d.mts.map