Vana SDK - v2.2.2
    Preparing search index...

    Interface ECIESEncrypted

    Represents ECIES encrypted data in eccrypto-compatible format.

    This structure maintains backward compatibility with data encrypted using the legacy eccrypto library.

    interface ECIESEncrypted {
        iv: Uint8Array;
        ephemPublicKey: Uint8Array;
        ciphertext: Uint8Array;
        mac: Uint8Array;
    }
    Index

    Properties

    iv: Uint8Array

    Initialization vector (16 bytes)

    ephemPublicKey: Uint8Array

    Ephemeral public key (65 bytes uncompressed)

    ciphertext: Uint8Array

    Encrypted data

    mac: Uint8Array

    Message authentication code (32 bytes)