selfprivacy.org.app/lib/logic/models/backblaze_credential.dart

30 lines
655 B
Dart
Raw Normal View History

2021-02-03 22:26:38 +02:00
import 'dart:convert';
import 'package:hive/hive.dart';
part 'backblaze_credential.g.dart';
@HiveType(typeId: 4)
class BackblazeCredential {
2021-03-26 15:38:39 +02:00
BackblazeCredential({required this.keyId, required this.applicationKey});
2021-02-03 22:26:38 +02:00
@HiveField(0)
2021-03-26 15:38:39 +02:00
final String keyId;
2021-02-03 22:26:38 +02:00
@HiveField(1)
2021-03-26 15:38:39 +02:00
final String applicationKey;
2021-02-03 22:26:38 +02:00
get encodedApiKey => encodedBackblazeKey(keyId, applicationKey);
@override
String toString() {
return '$keyId: $encodedApiKey';
}
}
2021-03-15 17:39:44 +02:00
String encodedBackblazeKey(String? keyId, String? applicationKey) {
2021-02-03 22:26:38 +02:00
String _apiKey = '$keyId:$applicationKey';
String encodedApiKey = base64.encode(utf8.encode(_apiKey));
return encodedApiKey;
}