mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-08 09:43:42 +01:00
62 lines
2.8 KiB
TypeScript
62 lines
2.8 KiB
TypeScript
import { NodeCryptoFunctionService } from '../../../src/services/nodeCryptoFunction.service';
|
|
|
|
import { Utils } from '../../../src/misc/utils';
|
|
|
|
describe('NodeCrypto Function Service', () => {
|
|
describe('aesEncrypt', () => {
|
|
it('should successfully aes encrypt data', async () => {
|
|
const nodeCryptoFunctionService = new NodeCryptoFunctionService();
|
|
const iv = makeStaticByteArray(16);
|
|
const key = makeStaticByteArray(32);
|
|
const data = Utils.fromUtf8ToArray('EncryptMe!');
|
|
const encValue = await nodeCryptoFunctionService.aesEncrypt(data.buffer, iv.buffer, key.buffer);
|
|
expect(Utils.fromBufferToB64(encValue)).toBe('ByUF8vhyX4ddU9gcooznwA==');
|
|
});
|
|
});
|
|
|
|
describe('aesDecryptSmall', () => {
|
|
it('should successfully aes decrypt data', async () => {
|
|
const nodeCryptoFunctionService = new NodeCryptoFunctionService();
|
|
const iv = makeStaticByteArray(16);
|
|
const key = makeStaticByteArray(32);
|
|
const data = Utils.fromB64ToArray('ByUF8vhyX4ddU9gcooznwA==');
|
|
const decValue = await nodeCryptoFunctionService.aesDecryptSmall(data.buffer, iv.buffer, key.buffer);
|
|
expect(Utils.fromBufferToUtf8(decValue)).toBe('EncryptMe!');
|
|
});
|
|
});
|
|
|
|
describe('aesDecryptLarge', () => {
|
|
it('should successfully aes decrypt data', async () => {
|
|
const nodeCryptoFunctionService = new NodeCryptoFunctionService();
|
|
const iv = makeStaticByteArray(16);
|
|
const key = makeStaticByteArray(32);
|
|
const data = Utils.fromB64ToArray('ByUF8vhyX4ddU9gcooznwA==');
|
|
const decValue = await nodeCryptoFunctionService.aesDecryptLarge(data.buffer, iv.buffer, key.buffer);
|
|
expect(Utils.fromBufferToUtf8(decValue)).toBe('EncryptMe!');
|
|
});
|
|
});
|
|
|
|
describe('randomBytes', () => {
|
|
it('should make a value of the correct length', async () => {
|
|
const nodeCryptoFunctionService = new NodeCryptoFunctionService();
|
|
const randomData = await nodeCryptoFunctionService.randomBytes(16);
|
|
expect(randomData.byteLength).toBe(16);
|
|
});
|
|
|
|
it('should not make the same value twice', async () => {
|
|
const nodeCryptoFunctionService = new NodeCryptoFunctionService();
|
|
const randomData = await nodeCryptoFunctionService.randomBytes(16);
|
|
const randomData2 = await nodeCryptoFunctionService.randomBytes(16);
|
|
expect(randomData.byteLength === randomData2.byteLength && randomData !== randomData2).toBeTruthy();
|
|
});
|
|
});
|
|
});
|
|
|
|
function makeStaticByteArray(length: number) {
|
|
const arr = new Uint8Array(length);
|
|
for (let i = 0; i < length; i++) {
|
|
arr[i] = i;
|
|
}
|
|
return arr;
|
|
}
|