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.
33 lines
1.3 KiB
TypeScript
33 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 encryptAttachmentBuffer = 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('encryptAttachmentBuffer', encryptingKey, bufferIn);
|
|
};
|
|
|
|
export const decryptAttachmentBuffer = 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('decryptAttachmentBuffer', encryptingKey, bufferIn);
|
|
};
|