sharedSecretKey method
Calculates a shared SecretKey.
Implementation
@override
Future<SecretKey> sharedSecretKey({
required KeyPair keyPair,
required PublicKey remotePublicKey,
}) {
return fallback.sharedSecretKey(
keyPair: keyPair,
remotePublicKey: remotePublicKey,
);
}