123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- import 'dart:io' as io;
- import 'package:flutter_secure_storage/flutter_secure_storage.dart';
- import 'package:path_provider/path_provider.dart';
- import 'package:photos/models/key_attributes.dart';
- import 'package:shared_preferences/shared_preferences.dart';
- import 'package:photos/utils/crypto_util.dart';
- class Configuration {
- Configuration._privateConstructor();
- static final Configuration instance = Configuration._privateConstructor();
- static const endpointKey = "endpoint";
- static const userIDKey = "user_id";
- static const emailKey = "email";
- static const tokenKey = "token";
- static const hasOptedForE2EKey = "has_opted_for_e2e_encryption";
- static const keyKey = "key";
- static const keyEncryptedKey = "encrypted_key";
- static const keyKekSalt = "kek_salt";
- static const keyKekHash = "kek_hash";
- static const keyKekHashSalt = "kek_hash_salt";
- static const keyEncryptedKeyIV = "encrypted_key_iv";
- SharedPreferences _preferences;
- FlutterSecureStorage _secureStorage;
- String _key;
- String _documentsDirectory;
- String _tempDirectory;
- String _thumbnailsDirectory;
- Future<void> init() async {
- _preferences = await SharedPreferences.getInstance();
- _secureStorage = FlutterSecureStorage();
- _documentsDirectory = (await getApplicationDocumentsDirectory()).path;
- _tempDirectory = _documentsDirectory + "/temp/";
- _thumbnailsDirectory = _documentsDirectory + "/thumbnails/";
- new io.Directory(_tempDirectory).createSync(recursive: true);
- new io.Directory(_thumbnailsDirectory).createSync(recursive: true);
- _key = await _secureStorage.read(key: keyKey);
- }
- Future<KeyAttributes> generateAndSaveKey(String passphrase) async {
- final key = CryptoUtil.getBase64EncodedSecureRandomString(length: 32);
- final kekSalt = CryptoUtil.getBase64EncodedSecureRandomString(length: 32);
- final kek = CryptoUtil.scrypt(passphrase, kekSalt, 32);
- final kekHashSalt =
- CryptoUtil.getBase64EncodedSecureRandomString(length: 32);
- final kekHash = CryptoUtil.scrypt(kek, kekHashSalt, 32);
- final iv = CryptoUtil.getBase64EncodedSecureRandomString(length: 16);
- final encryptedKey = CryptoUtil.encryptToBase64(key, kek, iv);
- final attributes =
- KeyAttributes(kekSalt, kekHash, kekHashSalt, encryptedKey, iv);
- await setKey(key);
- await setKeyAttributes(attributes);
- return attributes;
- }
- Future<void> decryptAndSaveKey(
- String passphrase, KeyAttributes attributes) async {
- final kek = CryptoUtil.scrypt(passphrase, attributes.kekSalt, 32);
- bool correctPassphrase =
- CryptoUtil.compareHash(kek, attributes.kekHash, attributes.kekHashSalt);
- if (!correctPassphrase) {
- throw Exception("Incorrect passphrase");
- }
- final key = CryptoUtil.decryptFromBase64(
- attributes.encryptedKey, kek, attributes.encryptedKeyIV);
- await setKey(key);
- }
- String getEndpoint() {
- return "192.168.0.100";
- }
- String getHttpEndpoint() {
- if (getEndpoint() == null) {
- return "";
- }
- return "http://" + getEndpoint();
- }
- Future<void> setEndpoint(String endpoint) async {
- await _preferences.setString(endpointKey, endpoint);
- }
- String getToken() {
- return _preferences.getString(tokenKey);
- }
- Future<void> setToken(String token) async {
- await _preferences.setString(tokenKey, token);
- }
- String getEmail() {
- return _preferences.getString(emailKey);
- }
- Future<void> setEmail(String email) async {
- await _preferences.setString(emailKey, email);
- }
- int getUserID() {
- return _preferences.getInt(userIDKey);
- }
- Future<void> setUserID(int userID) async {
- await _preferences.setInt(userIDKey, userID);
- }
- Future<void> setOptInForE2E(bool hasOptedForE2E) async {
- await _preferences.setBool(hasOptedForE2EKey, hasOptedForE2E);
- }
- bool hasOptedForE2E() {
- return true;
- // return _preferences.getBool(hasOptedForE2EKey);
- }
- Future<void> setKeyAttributes(KeyAttributes attributes) async {
- await _preferences.setString(
- keyKekSalt, attributes == null ? null : attributes.kekSalt);
- await _preferences.setString(
- keyKekHash, attributes == null ? null : attributes.kekHash);
- await _preferences.setString(
- keyKekHashSalt, attributes == null ? null : attributes.kekHashSalt);
- await _preferences.setString(
- keyEncryptedKey, attributes == null ? null : attributes.encryptedKey);
- await _preferences.setString(keyEncryptedKeyIV,
- attributes == null ? null : attributes.encryptedKeyIV);
- }
- KeyAttributes getKeyAttributes() {
- if (_preferences.getString(keyEncryptedKey) == null) {
- return null;
- }
- return KeyAttributes(
- _preferences.getString(keyKekSalt),
- _preferences.getString(keyKekHash),
- _preferences.getString(keyKekHashSalt),
- _preferences.getString(keyEncryptedKey),
- _preferences.getString(keyEncryptedKeyIV));
- }
- String getEncryptedKey() {
- return _preferences.getString(keyEncryptedKey);
- }
- Future<void> setKey(String key) async {
- await _secureStorage.write(key: keyKey, value: key);
- _key = key;
- }
- String getKey() {
- return _key;
- }
- String getDocumentsDirectory() {
- return _documentsDirectory;
- }
- String getThumbnailsDirectory() {
- return _thumbnailsDirectory;
- }
- String getTempDirectory() {
- return _tempDirectory;
- }
- bool hasConfiguredAccount() {
- return getToken() != null && getKey() != null;
- }
- }
|