aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/scripts/chat.js
diff options
context:
space:
mode:
authorMarvin Borner2019-02-13 20:29:03 +0100
committerMarvin Borner2019-02-13 20:29:03 +0100
commita17e92404056082a833ed1e507bf84d7f589ce8e (patch)
tree787b3ba898a050996b581454a0d0a3d1ee6b5465 /public/scripts/chat.js
parent5214443a65568049849649bc63976a1df9ce04eb (diff)
Added some fingerprinting improvements
Diffstat (limited to 'public/scripts/chat.js')
-rw-r--r--public/scripts/chat.js14
1 files changed, 8 insertions, 6 deletions
diff --git a/public/scripts/chat.js b/public/scripts/chat.js
index 040378c..46323e9 100644
--- a/public/scripts/chat.js
+++ b/public/scripts/chat.js
@@ -52,10 +52,10 @@ async function evaluateKeyGeneration() {
try {
if (await encryption.getPublicKeyPeerId(await encryption.getPublicKey()) !== peerId
|| await encryption.getPublicKeyFingerprint(await encryption.getPublicKey())
- !== await encryption.generateFingerprint(pin)) {
+ !== await encryption.getPublicFingerprint()) {
throw 'Not verified!';
}
- fingerprint = await encryption.generateFingerprint(pin);
+ fingerprint = await encryption.generatePrivateFingerprint(pin);
await encryption.decryptPrivateKey(await encryption.getPrivateKey(), fingerprint);
chat();
} catch (err) { // decrypting failed
@@ -77,7 +77,7 @@ async function evaluateKeyGeneration() {
pinInput.init(async (pin) => {
console.log('[LOG] No existing keys found! Generating...');
pinInput.generate();
- fingerprint = await encryption.generateFingerprint(pin);
+ fingerprint = await encryption.generatePrivateFingerprint(pin);
await encryption.generateKeys(peerId, fingerprint)
.then(() => chat());
});
@@ -141,7 +141,8 @@ function chat() {
encryption.getMessages(
connectedPeer.peer,
await encryption.getPeerPublicKey(connectedPeer.peer),
- await encryption.getPrivateKey(), fingerprint,
+ await encryption.getPrivateKey(),
+ fingerprint,
)
.then(messages => messages.forEach(async data => await receivedMessage(`${data.message} - ${data.time}`, true)));
connectedPeer.on('open', async () => transferKey(await encryption.getPublicKey()));
@@ -161,11 +162,12 @@ function chat() {
console.log('[LOG] Connecting to', id);
console.log('[LOG] Your connection ID is', connectionId);
connectedPeer = peer.connect(id, { label: connectionId });
- console.log('[LOG] Connected with', connectedPeer.peer);
+ console.log('[LOG] Connected to', connectedPeer.peer);
encryption.getMessages(
connectedPeer.peer,
await encryption.getPeerPublicKey(connectedPeer.peer),
- await encryption.getPrivateKey(), fingerprint,
+ await encryption.getPrivateKey(),
+ fingerprint,
)
.then(messages => messages.forEach(async data => await receivedMessage(`${data.message} - ${data.time}`, true)));
connectedPeer.on('open', async () => {