mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-06-25 12:54:06 +00:00
15 lines
582 B
Dart
15 lines
582 B
Dart
class SecureStorageKeys {
|
|
@Deprecated('Use the secure storage in rust')
|
|
static const String signalIdentity = 'signal_identity';
|
|
@Deprecated('Use the secure storage in rust')
|
|
static const String signalSignedPreKey = 'signed_pre_key_store';
|
|
@Deprecated('Use the login token')
|
|
static const String apiAuthToken = 'api_auth_token';
|
|
|
|
@Deprecated('Use user.json file')
|
|
static const String userData = 'userData';
|
|
|
|
// Not required for backup...
|
|
static const String receivingPushKeys = 'push_keys_receiving';
|
|
static const String sendingPushKeys = 'push_keys_sending';
|
|
}
|