sc25519_from64bytes.c 206 B

1234567
  1. #include "sc25519.h"
  2. void sc25519_from64bytes(sc25519 *r, const unsigned char x[64])
  3. {
  4. /* assuming little-endian representation of unsigned long long */
  5. sc25519_barrett(r, (unsigned long long *)x);
  6. }