aboutsummaryrefslogtreecommitdiff
path: root/src/Specific/NISTP256/AMD64/bench_madd.c
blob: f247a66704c135374092eabcf51e76eca6cadd60 (plain)
1
2
3
4
5
6
7
#include <stdint.h>
#include "p256.h"

void bench_madd(unsigned char* buf) {
  uint64_t* r = (uint64_t*) buf;
  p256_jacobian_add_affine(r, r, r+12);
}