0 purchases
ecdh 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!;
});
}
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.