Telegram Web K with changes to work inside I2P https://web.telegram.i2p/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

24 lines
807 B

import {salt1, salt2, srp_id, password, A, M1, passwordHashed, accountPassword} from '../mock/srp';
import computeSRP, {makePasswordHash} from '../lib/crypto/srp';
import '../lib/polyfill';
import assumeType from '../helpers/assumeType';
import {InputCheckPasswordSRP} from '../layer';
test('2FA hash', async() => {
const bytes = await makePasswordHash(password, salt1, salt2);
expect(bytes).toEqual(passwordHashed);
});
test('2FA whole (with negative)', async() => {
return await computeSRP(password, accountPassword, false).then((res) => {
assumeType<InputCheckPasswordSRP.inputCheckPasswordSRP>(res);
expect(res.srp_id).toEqual(srp_id);
expect(res.A).toEqual(A);
expect(res.M1).toEqual(M1);
return res;
}).catch((err) => {
throw err;
});
});