forked from matrix/element-web
make IPC calls to get pickle key
This commit is contained in:
parent
c68f35060a
commit
fb62f6dfb4
|
@ -500,4 +500,30 @@ export default class ElectronPlatform extends VectorBasePlatform {
|
||||||
|
|
||||||
return handled;
|
return handled;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async getPickleKey(userId: string, deviceId: string): Promise<string | null> {
|
||||||
|
try {
|
||||||
|
return await this._ipcCall('getPickleKey', userId, deviceId);
|
||||||
|
} catch (e) {
|
||||||
|
// if we can't connect to the password storage, assume there's no
|
||||||
|
// pickle key
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async createPickleKey(userId: string, deviceId: string): Promise<string | null> {
|
||||||
|
try {
|
||||||
|
return await this._ipcCall('createPickleKey', userId, deviceId);
|
||||||
|
} catch (e) {
|
||||||
|
// if we can't connect to the password storage, assume there's no
|
||||||
|
// pickle key
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async destroyPickleKey(userId: string, deviceId: string): Promise<void> {
|
||||||
|
try {
|
||||||
|
await this._ipcCall('destroyPickleKey', userId, deviceId);
|
||||||
|
} catch (e) {}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue