newKeyExchangeWand method
Returns a new KeyExchangeWand
that has a random KeyPair
.
Implementation
Future<KeyExchangeWand> newKeyExchangeWand() async {
final keyPair = await newKeyPair();
return newKeyExchangeWandFromKeyPair(keyPair);
}
Returns a new KeyExchangeWand
that has a random KeyPair
.
Future<KeyExchangeWand> newKeyExchangeWand() async {
final keyPair = await newKeyPair();
return newKeyExchangeWandFromKeyPair(keyPair);
}