crypto_sign_ed25519_sk_to_curve25519 method

int crypto_sign_ed25519_sk_to_curve25519(
  1. Pointer<UnsignedChar> curve25519_sk,
  2. Pointer<UnsignedChar> ed25519_sk
)

Implementation

int crypto_sign_ed25519_sk_to_curve25519(
  ffi.Pointer<ffi.UnsignedChar> curve25519_sk,
  ffi.Pointer<ffi.UnsignedChar> ed25519_sk,
) {
  return _crypto_sign_ed25519_sk_to_curve25519(
    curve25519_sk,
    ed25519_sk,
  );
}