pamoja for TypeScript - v0.1.17
    Preparing search index...

    Interface SealedMessage

    A message that has been sealed, with the header that travels beside it.

    interface SealedMessage {
        ciphertext: Buffer;
        counter: number;
        tag: Buffer;
    }
    Index
    ciphertext: Buffer

    The encrypted message.

    counter: number

    The counter naming this message within the session.

    tag: Buffer

    The tag over the ciphertext and its associated data.