cake_wallet/lib/core/auth_service.dart

43 lines
1.4 KiB
Dart
Raw Normal View History

2020-06-01 18:13:56 +00:00
import 'package:mobx/mobx.dart';
2020-06-20 07:10:00 +00:00
import 'package:flutter_secure_storage/flutter_secure_storage.dart';
import 'package:shared_preferences/shared_preferences.dart';
2020-09-21 11:50:26 +00:00
import 'package:cake_wallet/entities/preferences_key.dart';
import 'package:cake_wallet/entities/secret_store_key.dart';
import 'package:cake_wallet/entities/encrypt.dart';
2020-06-01 18:13:56 +00:00
2020-06-20 07:10:00 +00:00
class AuthService with Store {
2022-10-12 17:09:57 +00:00
AuthService({required this.secureStorage, required this.sharedPreferences});
2020-06-01 18:13:56 +00:00
2020-06-20 07:10:00 +00:00
final FlutterSecureStorage secureStorage;
final SharedPreferences sharedPreferences;
2020-06-01 18:13:56 +00:00
2022-10-12 17:09:57 +00:00
Future<void> setPassword(String password) async {
2020-06-20 07:10:00 +00:00
final key = generateStoreKeyFor(key: SecretStoreKey.pinCodePassword);
final encodedPassword = encodedPinCode(pin: password);
await secureStorage.write(key: key, value: encodedPassword);
}
Future<bool> canAuthenticate() async {
final key = generateStoreKeyFor(key: SecretStoreKey.pinCodePassword);
2020-09-21 11:50:26 +00:00
final walletName =
sharedPreferences.getString(PreferencesKey.currentWalletName) ?? '';
2020-06-20 07:10:00 +00:00
var password = '';
2020-06-01 18:13:56 +00:00
2020-06-20 07:10:00 +00:00
try {
2022-10-12 17:09:57 +00:00
password = await secureStorage.read(key: key) ?? '';
2020-06-20 07:10:00 +00:00
} catch (e) {
print(e);
}
2020-06-01 18:13:56 +00:00
2020-06-20 07:10:00 +00:00
return walletName.isNotEmpty && password.isNotEmpty;
2020-06-01 18:13:56 +00:00
}
2020-06-20 07:10:00 +00:00
Future<bool> authenticate(String pin) async {
final key = generateStoreKeyFor(key: SecretStoreKey.pinCodePassword);
final encodedPin = await secureStorage.read(key: key);
2022-10-12 17:09:57 +00:00
final decodedPin = decodedPinCode(pin: encodedPin!);
2020-06-20 07:10:00 +00:00
return decodedPin == pin;
}
2020-06-01 18:13:56 +00:00
}