Home | History | Annotate | Line # | Download | only in curve25519
      1 
      2 #ifndef scalarmult_poly1305_H
      3 #define scalarmult_poly1305_H
      4 
      5 typedef struct crypto_scalarmult_curve25519_implementation {
      6     int (*mult)(unsigned char *q, const unsigned char *n,
      7                 const unsigned char *p);
      8     int (*mult_base)(unsigned char *q, const unsigned char *n);
      9 } crypto_scalarmult_curve25519_implementation;
     10 
     11 #endif
     12