Wire shape the L2PS messaging transport carries (ciphertext + nonce, base64).

interface SerializedEncryptedMessage {
    ciphertext: string;
    ephemeralKey?: string;
    nonce: string;
}

Properties

ciphertext: string
ephemeralKey?: string
nonce: string