@aptos-labs/ts-sdk
Version:
Aptos TypeScript SDK
11 lines • 474 B
TypeScript
/**
* Batch encryption primitives for encrypted transaction payloads.
*
* Ported from aptos-core/crates/aptos-batch-encryption. Encrypt-only — decryption helpers are not implemented
* because the SDK never decrypts ciphertexts client-side. `bytesToG1`/`bytesToG2` enforce the prime-order
* subgroup check on deserialization, matching aptos-core `ts-batch-encrypt`.
*
* @module
*/
export { EncryptionKey } from "./ciphertext.js";
//# sourceMappingURL=index.d.ts.map