2022-10-04 18:45:12 +00:00
|
|
|
#include <inttypes.h>
|
|
|
|
#include <stdio.h>
|
2022-10-04 21:40:18 +00:00
|
|
|
#include <stdlib.h>
|
2022-10-04 18:45:12 +00:00
|
|
|
#include "c_kzg_4844.h"
|
|
|
|
|
2022-10-10 19:12:31 +00:00
|
|
|
BLSFieldElement* bytes_to_bls_field_wrap(const uint8_t bytes[]) {
|
|
|
|
BLSFieldElement* out = (BLSFieldElement*)malloc(sizeof(BLSFieldElement));
|
|
|
|
if (out != NULL) bytes_to_bls_field(out, bytes);
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
BLSFieldElement* compute_powers_wrap(const BLSFieldElement *r, uint64_t n) {
|
|
|
|
BLSFieldElement* out = (BLSFieldElement*)calloc(n, sizeof(BLSFieldElement));
|
|
|
|
if (out != NULL) compute_powers(out, r, n);
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2022-10-10 20:56:57 +00:00
|
|
|
PolynomialEvalForm* vector_lincomb_wrap(const uint8_t bytes[], const BLSFieldElement scalars[], uint64_t num_vectors, uint64_t vector_len) {
|
|
|
|
PolynomialEvalForm *p = (PolynomialEvalForm*)malloc(sizeof(PolynomialEvalForm));
|
|
|
|
if (p == NULL) return NULL;
|
|
|
|
|
|
|
|
if (alloc_polynomial(p, vector_len) != C_KZG_OK) {
|
|
|
|
free(p);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
BLSFieldElement *vectors = (BLSFieldElement*)calloc(num_vectors * vector_len, sizeof(BLSFieldElement));
|
|
|
|
if (vectors == NULL) {
|
|
|
|
free_polynomial(p);
|
|
|
|
free(p);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (uint64_t i = 0; i < num_vectors; i++)
|
|
|
|
for (uint64_t j = 0; j < vector_len; j++)
|
|
|
|
bytes_to_bls_field(&vectors[i * vector_len + j], &bytes[(i * vector_len + j) * 32]);
|
|
|
|
|
|
|
|
vector_lincomb(p->values, vectors, scalars, num_vectors, vector_len);
|
|
|
|
|
|
|
|
free(vectors);
|
|
|
|
return p;
|
2022-10-10 19:12:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
KZGCommitment* g1_lincomb_wrap(const uint8_t bytes[], const BLSFieldElement scalars[], uint64_t num_points) {
|
|
|
|
KZGCommitment* points = (KZGCommitment*)calloc(num_points, sizeof(KZGCommitment));
|
|
|
|
if (points == NULL) return NULL;
|
|
|
|
|
|
|
|
for (uint64_t i = 0; i < num_points; i++) {
|
|
|
|
if (bytes_to_g1(&points[i], &bytes[i * 48]) != C_KZG_OK) {
|
|
|
|
free(points);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
KZGCommitment* out = (KZGCommitment*)malloc(sizeof(KZGCommitment));
|
|
|
|
if (out == NULL) {
|
|
|
|
free(points);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
g1_lincomb(out, points, scalars, num_points);
|
|
|
|
|
|
|
|
free(points);
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
int verify_kzg_proof_wrap(const KZGCommitment* c, const BLSFieldElement* x, const BLSFieldElement* y, const uint8_t p[48], KZGSettings *s) {
|
2022-10-05 19:04:35 +00:00
|
|
|
KZGProof proof;
|
|
|
|
bool out;
|
|
|
|
|
|
|
|
if (bytes_to_g1(&proof, p) != C_KZG_OK) return -1;
|
|
|
|
|
2022-10-10 19:12:31 +00:00
|
|
|
if (verify_kzg_proof(&out, c, x, y, &proof, s) != C_KZG_OK)
|
2022-10-05 19:04:35 +00:00
|
|
|
return -2;
|
2022-10-10 19:12:31 +00:00
|
|
|
|
2022-10-05 19:04:35 +00:00
|
|
|
return out ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
KZGSettings* load_trusted_setup_wrap(const char* file) {
|
|
|
|
KZGSettings* out = (KZGSettings*)malloc(sizeof(KZGSettings));
|
|
|
|
|
|
|
|
if (out == NULL) return NULL;
|
|
|
|
|
|
|
|
FILE* f = fopen(file, "r");
|
|
|
|
|
|
|
|
if (f == NULL) return NULL;
|
|
|
|
|
|
|
|
if (load_trusted_setup(out, f) != C_KZG_OK) return NULL;
|
|
|
|
|
|
|
|
return out;
|
2022-10-04 18:45:12 +00:00
|
|
|
}
|
2022-10-04 21:40:18 +00:00
|
|
|
|
2022-10-10 22:21:05 +00:00
|
|
|
BLSFieldElement* evaluate_polynomial_wrap(const PolynomialEvalForm* p, const BLSFieldElement* z, const KZGSettings *s) {
|
|
|
|
BLSFieldElement *out = (BLSFieldElement*)malloc(sizeof(BLSFieldElement));
|
|
|
|
if (out == NULL) return NULL;
|
2022-10-06 23:45:42 +00:00
|
|
|
|
2022-10-10 22:21:05 +00:00
|
|
|
if (evaluate_polynomial_in_evaluation_form(out, p, z, s) != C_KZG_OK)
|
|
|
|
return NULL;
|
2022-10-06 23:45:42 +00:00
|
|
|
|
2022-10-10 22:21:05 +00:00
|
|
|
return out;
|
2022-10-06 23:45:42 +00:00
|
|
|
}
|
|
|
|
|
2022-10-10 22:28:29 +00:00
|
|
|
void free_trusted_setup_wrap(KZGSettings *s) {
|
2022-10-05 20:33:16 +00:00
|
|
|
free_trusted_setup(s);
|
|
|
|
free(s);
|
|
|
|
}
|
2022-10-10 22:28:29 +00:00
|
|
|
|
|
|
|
void free_polynomial_wrap(PolynomialEvalForm *p) {
|
|
|
|
free_polynomial(p);
|
|
|
|
free(p);
|
|
|
|
}
|