@aptos-labs/ts-sdk
Version:
Aptos TypeScript SDK
13 lines • 544 B
JavaScript
// Copyright © Aptos Foundation
// SPDX-License-Identifier: Apache-2.0
/**
* 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.js.map