emcyfra/libpqscheme_test.c
Kris Kwiatkowski 62fd3a825c WIP: Works.
But I don't like it much yet.
2025-02-19 00:03:40 +00:00

11 lines
249 B
C

#include <epcc/sha3.h>
#include <stdint.h>
int run();
__attribute__((used, section(".text"))) int cryptographic_test() {
// Run unit tests for cryptographic scheme
return 7 + run();
}
int run() { return (int)epcc_sha3_serialized_size(); }