Files
icicle/wrappers/golang/curves/bn254/include/curve.h
2024-07-04 11:03:58 +02:00

28 lines
838 B
C

#include <cuda_runtime.h>
#include <stdbool.h>
#ifndef _BN254_CURVE_H
#define _BN254_CURVE_H
#ifdef __cplusplus
extern "C" {
#endif
typedef struct projective_t projective_t;
typedef struct affine_t affine_t;
typedef struct DeviceContext DeviceContext;
bool bn254_eq(projective_t* point1, projective_t* point2);
void bn254_to_affine(projective_t* point, affine_t* point_out);
void bn254_from_affine(affine_t* point, projective_t* point_out);
void bn254_generate_projective_points(projective_t* points, int size);
void bn254_generate_affine_points(affine_t* points, int size);
cudaError_t bn254_affine_convert_montgomery(affine_t* points, size_t n, bool is_into, DeviceContext* ctx);
cudaError_t bn254_projective_convert_montgomery(projective_t* points, size_t n, bool is_into, DeviceContext* ctx);
#ifdef __cplusplus
}
#endif
#endif