From 41dc7bf5a2a7c8709c5c58ee52799c5f56fd5a41 Mon Sep 17 00:00:00 2001 From: Jacob Trombetta Date: Tue, 29 Oct 2024 14:10:19 -0400 Subject: [PATCH] fix: the grumpkin curve ID in the blitzar_api should be unique (#195) fix: the grumpkin curve ID in the blitzar_api should not be the same as the bn254 curve ID --- cbindings/blitzar_api.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cbindings/blitzar_api.h b/cbindings/blitzar_api.h index e70c6cab..5518345a 100644 --- a/cbindings/blitzar_api.h +++ b/cbindings/blitzar_api.h @@ -28,7 +28,7 @@ extern "C" { #define SXT_CURVE_RISTRETTO255 0 #define SXT_CURVE_BLS_381 1 #define SXT_CURVE_BN_254 2 -#define SXT_CURVE_GRUMPKIN 2 +#define SXT_CURVE_GRUMPKIN 3 /** config struct to hold the chosen backend */ struct sxt_config {