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.
29 lines
704 B
29 lines
704 B
import { salt1, salt2, g, p, srp_id, secure_random, srp_B, password, A, M1, passwordHashed } from '../mock/srp'; |
|
import { computeCheck, makePasswordHash } from '../lib/crypto/srp'; |
|
|
|
test('2FA hash', async() => { |
|
const bytes = await makePasswordHash(password, salt1, salt2); |
|
expect(bytes).toEqual(passwordHashed); |
|
}); |
|
|
|
test('2FA whole (with negative)', async() => { |
|
return await computeCheck(password, { |
|
current_algo: { |
|
salt1, |
|
salt2, |
|
p, |
|
g |
|
}, |
|
srp_id, |
|
srp_B, |
|
secure_random |
|
}).then(res => { |
|
expect(res.srp_id).toEqual(srp_id); |
|
expect(res.A).toEqual(A); |
|
expect(res.M1).toEqual(M1); |
|
|
|
return res; |
|
}).catch(err => { |
|
throw err; |
|
}); |
|
});
|
|
|