Interface DownloadEncryptedStorageRequest

Ask the server for an e2ee backup of a user's data given a blobKey.

interface DownloadEncryptedStorageRequest {
    blobKey: string;
    knownRevision?: string;
}

Properties

blobKey: string

On the server-side, encrypted storage is keyed by the hash of the encryption key.

knownRevision?: string

Optional field indicating the revision of the latest blob already known to the client. If this matches the latest blob stored on the server, the request will succeed, but the result will not contain any blob.

Generated using TypeDoc