getP256ShareSecret function
Implementation
Future<Uint8List> getP256ShareSecret(
Uint8List privateKey,
Uint8List rawPublicKey,
) async {
final result = await p256GetSharedSecret(
req: P256ShareSecretReq(
seed: privateKey,
publicKeyRawBytes: rawPublicKey,
),
);
return result;
}