aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/scripts/encryption.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/scripts/encryption.js')
-rw-r--r--public/scripts/encryption.js14
1 files changed, 10 insertions, 4 deletions
diff --git a/public/scripts/encryption.js b/public/scripts/encryption.js
index 4c0ab22..0e76b43 100644
--- a/public/scripts/encryption.js
+++ b/public/scripts/encryption.js
@@ -249,7 +249,7 @@ const self = module.exports = {
* @returns {Promise<void>}
*/
storePeer: async (peerId) => {
- db.contacts.put({
+ await db.contacts.put({
peer_id: peerId,
fingerprint: await self.getPublicKeyFingerprint(await self.getPeerPublicKey(peerId)),
})
@@ -258,6 +258,12 @@ const self = module.exports = {
},
/**
+ * Gets every stored peer
+ * @returns {Promise<Array>}
+ */
+ getStoredPeers: async () => db.contacts.toArray(),
+
+ /**
* Gets the public fingerprint of a peer
* @param peerId
* @returns {Dexie.Promise<Dexie.Promise<Array<String>>>}
@@ -274,12 +280,12 @@ const self = module.exports = {
* @param key
*/
storePeerPublicKey: async (peerId, key) => {
- db.peer_keys.put({
+ await db.peer_keys.put({
peer_id: peerId,
key_data: key,
})
- .then(() => {
- self.storePeer(peerId);
+ .then(async () => {
+ await self.storePeer(peerId);
console.log(`[LOG] Stored public key of ${peerId}`);
})
.catch(err => console.error(err));