compute static method
Implementation
static Uint8List compute(
Uint8List outputPrivateKey, Uint8List outputPublicKey) {
final ed = VaultKeeper.vault.ed25519;
final hp = hashToPoint(outputPublicKey);
return ed.scalarMult(outputPrivateKey, hp);
}