]> pd.if.org Git - zpackage/blob - crypto/ref10/base.c
remove stray debug fprintf
[zpackage] / crypto / ref10 / base.c
1 #include "fe.h"
2 static const unsigned char basepoint[32] = {9};
3
4 int crypto_scalarmult_base(unsigned char *q, const unsigned char *n) {
5         return x25519(q,n,basepoint);
6 }