mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-12-12 14:43:42 -05:00
Switch to crypto to typed keys everywhere
This commit is contained in:
parent
88f69ce237
commit
848da0ae4e
180 changed files with 8532 additions and 8488 deletions
|
|
@ -158,7 +158,8 @@ Future<void> testAppMessageLoopbackBigPackets(
|
|||
|
||||
final sentMessages = <String>{};
|
||||
final random = Random.secure();
|
||||
final cs = await Veilid.instance.bestCryptoSystem();
|
||||
final cs = await Veilid.instance
|
||||
.getCryptoSystem(Veilid.instance.validCryptoKinds().first);
|
||||
|
||||
try {
|
||||
await Veilid.instance.debug('purge routes');
|
||||
|
|
@ -223,7 +224,8 @@ Future<void> testAppCallLoopbackBigPackets(
|
|||
|
||||
final sentMessages = <String>{};
|
||||
final random = Random.secure();
|
||||
final cs = await Veilid.instance.bestCryptoSystem();
|
||||
final cs = await Veilid.instance
|
||||
.getCryptoSystem(Veilid.instance.validCryptoKinds().first);
|
||||
|
||||
try {
|
||||
await Veilid.instance.debug('purge routes');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue