veilidchat/lib/veilid_support/identity_master.dart

82 lines
2.9 KiB
Dart
Raw Normal View History

2023-07-30 13:57:00 -04:00
// ignore_for_file: prefer_expression_function_bodies
2023-07-25 01:04:34 -04:00
import 'dart:typed_data';
2023-07-21 21:25:27 -04:00
import 'package:fast_immutable_collections/fast_immutable_collections.dart';
import '../entities/identity.dart';
import 'veilid_support.dart';
2023-07-25 01:04:34 -04:00
// Identity Master with secrets
// Not freezed because we never persist this class in its entirety
class IdentityMasterWithSecrets {
2023-08-01 00:39:50 -04:00
IdentityMasterWithSecrets._(
2023-07-25 01:04:34 -04:00
{required this.identityMaster,
required this.masterSecret,
required this.identitySecret});
2023-07-26 14:20:29 -04:00
IdentityMaster identityMaster;
SecretKey masterSecret;
SecretKey identitySecret;
2023-07-25 01:04:34 -04:00
2023-08-01 00:39:50 -04:00
/// Creates a new master identity and returns it with its secrets
static Future<IdentityMasterWithSecrets> create() async {
final pool = await DHTRecordPool.instance();
2023-07-21 21:25:27 -04:00
2023-08-01 00:39:50 -04:00
// IdentityMaster DHT record is public/unencrypted
return (await pool.create(crypto: const DHTRecordCryptoPublic()))
.deleteScope((masterRec) async {
// Identity record is private
final identityRec = await pool.create(parent: masterRec.key);
2023-07-21 21:25:27 -04:00
// Make IdentityMaster
2023-07-26 17:42:11 -04:00
final masterRecordKey = masterRec.key;
final masterOwner = masterRec.ownerKeyPair!;
final masterSigBuf = BytesBuilder()
..add(masterRecordKey.decode())
..add(masterOwner.key.decode());
final identityRecordKey = identityRec.key;
final identityOwner = identityRec.ownerKeyPair!;
final identitySigBuf = BytesBuilder()
..add(identityRecordKey.decode())
..add(identityOwner.key.decode());
assert(masterRecordKey.kind == identityRecordKey.kind,
'new master and identity should have same cryptosystem');
2023-08-01 00:39:50 -04:00
final crypto = await pool.veilid.getCryptoSystem(masterRecordKey.kind);
2023-07-21 21:25:27 -04:00
final identitySignature =
2023-07-25 01:04:34 -04:00
await crypto.signWithKeyPair(masterOwner, identitySigBuf.toBytes());
2023-07-21 21:25:27 -04:00
final masterSignature =
2023-07-25 01:04:34 -04:00
await crypto.signWithKeyPair(identityOwner, masterSigBuf.toBytes());
2023-07-21 21:25:27 -04:00
final identityMaster = IdentityMaster(
identityRecordKey: identityRecordKey,
identityPublicKey: identityOwner.key,
masterRecordKey: masterRecordKey,
masterPublicKey: masterOwner.key,
identitySignature: identitySignature,
masterSignature: masterSignature);
// Write identity master to master dht key
await masterRec.eventualWriteJson(identityMaster);
// Make empty identity
const identity = Identity(accountRecords: IMapConst({}));
// Write empty identity to identity dht key
await identityRec.eventualWriteJson(identity);
2023-08-01 00:39:50 -04:00
return IdentityMasterWithSecrets._(
2023-07-21 21:25:27 -04:00
identityMaster: identityMaster,
masterSecret: masterOwner.secret,
identitySecret: identityOwner.secret);
});
2023-08-01 00:39:50 -04:00
}
/// Creates a new master identity and returns it with its secrets
Future<void> delete() async {
final pool = await DHTRecordPool.instance();
await pool.deleteDeep(identityMaster.masterRecordKey);
}
2023-07-21 21:25:27 -04:00
}