crypto_scalarmult_curve25519 method

int crypto_scalarmult_curve25519(
  1. Pointer<UnsignedChar> q,
  2. Pointer<UnsignedChar> n,
  3. Pointer<UnsignedChar> p
)

Implementation

int crypto_scalarmult_curve25519(
  ffi.Pointer<ffi.UnsignedChar> q,
  ffi.Pointer<ffi.UnsignedChar> n,
  ffi.Pointer<ffi.UnsignedChar> p,
) {
  return _crypto_scalarmult_curve25519(
    q,
    n,
    p,
  );
}