crypto_sign_ed25519_pk_to_curve25519 method

int crypto_sign_ed25519_pk_to_curve25519(
  1. Pointer<UnsignedChar> curve25519_pk,
  2. Pointer<UnsignedChar> ed25519_pk
)

Implementation

int crypto_sign_ed25519_pk_to_curve25519(
  ffi.Pointer<ffi.UnsignedChar> curve25519_pk,
  ffi.Pointer<ffi.UnsignedChar> ed25519_pk,
) {
  return _crypto_sign_ed25519_pk_to_curve25519(
    curve25519_pk,
    ed25519_pk,
  );
}