ecdhP384 method

  1. @override
Ecdh ecdhP384({
  1. required int length,
})

A factory used by Ecdh.p384.

Implementation

@override
Ecdh ecdhP384({required int length}) {
  final impl = FlutterEcdh.p384(length: length);
  if (impl.isSupportedPlatform) {
    return impl;
  }
  return super.ecdhP384(length: length);
}