CryptoActorStub constructor
CryptoActorStub(
- String id,
- String rev,
- Set<
SpkiHexString> publicKeysForOaepWithSha256, { - Map<
String, List< ? hcPartyKeys,HexString> > - Map<
SpkiHexString, Map< ? aesExchangeKeys,String, Map< >AesExchangeKeyEncryptionKeypairIdentifier, HexString> > - Map<
AesExchangeKeyEncryptionKeypairIdentifier, Map< ? transferKeys,AesExchangeKeyEncryptionKeypairIdentifier, HexString> > - Map<
String, HexString> ? privateKeyShamirPartitions, - SpkiHexString? publicKey,
- Set<
CodeStub> ? tags,
Implementation
CryptoActorStub(
this.id,
this.rev,
this.publicKeysForOaepWithSha256,
{
Map<String, List<HexString>>? hcPartyKeys,
Map<SpkiHexString, Map<String, Map<AesExchangeKeyEncryptionKeypairIdentifier, HexString>>>? aesExchangeKeys,
Map<AesExchangeKeyEncryptionKeypairIdentifier, Map<AesExchangeKeyEncryptionKeypairIdentifier, HexString>>? transferKeys,
Map<String, HexString>? privateKeyShamirPartitions,
SpkiHexString? publicKey,
Set<CodeStub>? tags
}) : hcPartyKeys = hcPartyKeys ?? {},
aesExchangeKeys = aesExchangeKeys ?? {},
transferKeys = transferKeys ?? {},
privateKeyShamirPartitions = privateKeyShamirPartitions ?? {},
publicKey = publicKey ?? null,
tags = tags ?? {};