You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-desktop/ts/util/local_attachments_encrypter.ts

35 lines
1.3 KiB
TypeScript

import { isArrayBuffer } from 'lodash';
import { fromHexToArray } from '../session/utils/String';
import { callUtilsWorker } from '../webworker/workers/util_worker_interface';
import { getItemById } from '../data/channelsItem';
export const encryptAttachmentBufferRenderer = async (bufferIn: ArrayBuffer) => {
if (!isArrayBuffer(bufferIn)) {
throw new TypeError("'bufferIn' must be an array buffer");
}
const key = (await getItemById('local_attachment_encrypted_key'))?.value as string | undefined;
if (!key) {
throw new TypeError(
"'encryptAttachmentBuffer' needs a key set in local_attachment_encrypted_key"
);
}
const encryptingKey = fromHexToArray(key);
return callUtilsWorker('encryptAttachmentBufferNode', encryptingKey, bufferIn);
};
export const decryptAttachmentBufferRenderer = async (
bufferIn: ArrayBuffer
): Promise<Uint8Array> => {
if (!isArrayBuffer(bufferIn)) {
throw new TypeError("'bufferIn' must be an array buffer");
}
const key = (await getItemById('local_attachment_encrypted_key'))?.value as string;
if (!key) {
throw new TypeError(
"'decryptAttachmentBuffer' needs a key set in local_attachment_encrypted_key"
);
}
const encryptingKey = fromHexToArray(key);
return callUtilsWorker('decryptAttachmentBufferNode', encryptingKey, bufferIn);
};