mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-23 22:27:34 -05:00
93468211d6
* chore: update eslint * chore: update rules and style * chore: aling formatting * chore: update ci rules * chore: aling formatting * chore: aling formatting
15 lines
521 B
TypeScript
15 lines
521 B
TypeScript
import { aesDecrypt, aesEncrypt } from '../../../../src/lib/crypto-utils';
|
|
import { convertPayloadToBase64 } from '../../../../src/lib/utils';
|
|
|
|
describe('test crypto utils', () => {
|
|
describe('default encryption', () => {
|
|
test('decrypt payload flow', () => {
|
|
const payload = 'juan';
|
|
const token = aesEncrypt(Buffer.from(payload), '12345').toString('base64');
|
|
|
|
const data = aesDecrypt(convertPayloadToBase64(token), '12345').toString('utf8');
|
|
|
|
expect(payload).toEqual(data);
|
|
});
|
|
});
|
|
});
|