mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
e367c3f1e0
* feat: improve legacy token signature by removing deprecated crypto.createDecipher * fix: wrong reference * chore: add debug
20 lines
622 B
TypeScript
20 lines
622 B
TypeScript
import { aesDecrypt, aesEncrypt } from '../src/legacy-token';
|
|
|
|
describe('test crypto utils', () => {
|
|
test('decrypt payload flow', () => {
|
|
const secret = 'f5bb945cc57fea2f25961e1bd6fb3c89';
|
|
const payload = 'juan:password';
|
|
const token = aesEncrypt(payload, secret) as string;
|
|
const data = aesDecrypt(token, secret);
|
|
|
|
expect(payload).toEqual(data);
|
|
});
|
|
|
|
test('crypt fails if secret is incorrect', () => {
|
|
const secret = 'f5bb945cc57fea2f25961e1bd6fb3c89_TO_LONG';
|
|
const payload = 'juan';
|
|
const token = aesEncrypt(payload, secret) as string;
|
|
expect(token).toBeUndefined();
|
|
});
|
|
});
|