2020-06-03 18:07:50 +02:00
|
|
|
import KeychainServiceDriverBase from './KeychainServiceDriverBase';
|
|
|
|
|
|
|
|
export default class KeychainServiceDriver extends KeychainServiceDriverBase {
|
2024-08-08 20:53:43 +02:00
|
|
|
public override readonly driverId = 'dummy';
|
|
|
|
|
|
|
|
public async supported() {
|
|
|
|
return false;
|
|
|
|
}
|
2020-06-03 18:07:50 +02:00
|
|
|
|
2023-03-06 16:22:01 +02:00
|
|
|
public async setPassword(/* name:string, password:string*/): Promise<boolean> {
|
2020-06-03 18:07:50 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-03-06 16:22:01 +02:00
|
|
|
public async password(/* name:string*/): Promise<string> {
|
2020-06-03 18:07:50 +02:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2023-03-06 16:22:01 +02:00
|
|
|
public async deletePassword(/* name:string*/): Promise<void> {
|
2020-06-03 18:07:50 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2024-08-08 20:53:43 +02:00
|
|
|
public async upgradeStorageBackend(_secureKeys: string[], _newDatabaseVersion: number): Promise<void> {
|
|
|
|
}
|
2020-06-03 18:07:50 +02:00
|
|
|
}
|