interface encryptedObject {
    algorithm: "ml-kem-aes" | "rsa";
    cipherText?: Uint8Array<ArrayBufferLike>;
    encryptedData: Uint8Array<ArrayBufferLike>;
}

Properties

algorithm: "ml-kem-aes" | "rsa"
cipherText?: Uint8Array<ArrayBufferLike>
encryptedData: Uint8Array<ArrayBufferLike>