mirror of
https://github.com/mitchell/selfpass.git
synced 2025-12-15 21:47:23 +00:00
Add decryption of credential encrypted fields; refactored config;
add app icon
This commit is contained in:
parent
910bdeae12
commit
27215e6596
60 changed files with 370 additions and 151 deletions
|
|
@ -15,6 +15,7 @@ abstract class ConfigRepo {
|
|||
Future<void> setPrivateKey(String key);
|
||||
Future<String> get privateKey;
|
||||
|
||||
String get password;
|
||||
Future<void> setPassword(String password);
|
||||
Future<bool> get passwordSet;
|
||||
Future<bool> matchesPasswordHash(String password);
|
||||
|
|
|
|||
|
|
@ -4,5 +4,5 @@ class ConfigScreenArguments {
|
|||
final ConnectionConfig connectionConfig;
|
||||
final String privateKey;
|
||||
|
||||
const ConfigScreenArguments(this.connectionConfig, this.privateKey);
|
||||
const ConfigScreenArguments({this.connectionConfig, this.privateKey});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue