ecdh_plugin 0.0.1 ecdh_plugin: ^0.0.1 copied to clipboard
ECDH key generation plugin
ecdh_plugin #
ECDH key generation plugin
Getting Started #
To get the ECDH keys use below function
first step: call ECDH plugin
final _ecdhPlugin = EcdhPlugin();
Second step: write function for get key
getKeys() async { var value = await _ecdhPlugin.getECDHKey(); setState(() { _publicKeyHex = value.publicKey!; _privateKeyHex = value.privateKey!; }); }