Saxonberg Server API
    Preparing search index...

    Stored shape for an encrypted string. A structured object (not a concatenated blob) so the field stays greppable in Mongo and the version tag supports a future re-key/algorithm migration.

    interface EncryptedEnvelope {
        ct: string;
        iv: string;
        tag: string;
        v: 1;
    }
    Index

    Properties

    Properties

    ct: string

    Base64-encoded ciphertext.

    iv: string

    Base64-encoded 12-byte GCM nonce, fresh per toStored call.

    tag: string

    Base64-encoded 16-byte GCM authentication tag.

    v: 1

    Format version (for future re-key / algorithm migration).