sodium-friends / sodium-native

Low level bindings for libsodium
MIT License
300 stars 64 forks source link

Missing bindings for crypto_core_ed25519_scalar_mul #153

Open 0xabrarhussain opened 2 years ago

0xabrarhussain commented 2 years ago

From the section https://doc.libsodium.org/advanced/point-arithmetic#scalar-arithmetic-over-l

There's the function:

void crypto_core_ed25519_scalar_mul(unsigned char *z, const unsigned char *x, const unsigned char *y);

The crypto_core_ed25519_scalar_mul() function stores x * y (mod L) into z.

Seems like sodium-native doesn't include this binding?