Vana SDK - v0.1.0
    Preparing search index...
    • Parse encrypted data buffer into components Extracts IV, ephemeral public key, ciphertext, and MAC from a concatenated buffer

      Parameters

      • encryptedBuffer: Buffer

        The buffer containing encrypted data

      Returns {
          iv: Buffer<ArrayBuffer>;
          ephemPublicKey: Buffer<ArrayBuffer>;
          ciphertext: Buffer<ArrayBuffer>;
          mac: Buffer<ArrayBuffer>;
      }

      Object with parsed components