forked from algorand/go-algorand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbatchverifier.c
20 lines (20 loc) · 991 Bytes
/
batchverifier.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "sodium.h"
int ed25519_batch_wrapper(const unsigned char **messages2D,
const unsigned char **publicKeys2D,
const unsigned char **signatures2D,
const unsigned char *messages1D,
const unsigned long long *mlen,
const unsigned char *publicKeys1D,
const unsigned char *signatures1D,
size_t num,
int *valid) {
// fill 2-D arrays for messages, pks, sigs from provided 1-D arrays
unsigned long long mpos = 0;
for (size_t i = 0; i < num; i++) {
messages2D[i] = &messages1D[mpos];
mpos += mlen[i];
publicKeys2D[i] = &publicKeys1D[i*crypto_sign_ed25519_PUBLICKEYBYTES];
signatures2D[i] = &signatures1D[i*crypto_sign_ed25519_BYTES];
}
return crypto_sign_ed25519_open_batch(messages2D, mlen, publicKeys2D, signatures2D, num, valid);
}