ecdh static method

IKeyExchange ecdh(
  1. dynamic input
)

Creates an ECDH key exchange instance.

input: The complete InputECDHKeyExchange record with configuration

Returns: An ECDHKeyExchange instance

Implementation

static IKeyExchange ecdh(dynamic input) {
  return ECDHKeyExchange.createFull(input as dynamic);
}