mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-08 01:43:13 +00:00
30 lines
639 B
Dart
30 lines
639 B
Dart
import 'dart:convert';
|
|
|
|
import 'package:hive/hive.dart';
|
|
|
|
part 'backblaze_credential.g.dart';
|
|
|
|
@HiveType(typeId: 4)
|
|
class BackblazeCredential {
|
|
BackblazeCredential({this.keyId, this.applicationKey});
|
|
|
|
@HiveField(0)
|
|
final String? keyId;
|
|
|
|
@HiveField(1)
|
|
final String? applicationKey;
|
|
|
|
get encodedApiKey => encodedBackblazeKey(keyId, applicationKey);
|
|
|
|
@override
|
|
String toString() {
|
|
return '$keyId: $encodedApiKey';
|
|
}
|
|
}
|
|
|
|
String encodedBackblazeKey(String? keyId, String? applicationKey) {
|
|
String _apiKey = '$keyId:$applicationKey';
|
|
String encodedApiKey = base64.encode(utf8.encode(_apiKey));
|
|
return encodedApiKey;
|
|
}
|