2025-02-17 09:09:14 +00:00
|
|
|
#include <stdint.h>
|
2025-02-19 00:03:36 +00:00
|
|
|
int run();
|
2025-02-17 09:09:14 +00:00
|
|
|
|
2025-02-19 00:03:36 +00:00
|
|
|
__attribute__((used, section(".text"))) int cryptographic_test() {
|
2025-02-17 09:09:14 +00:00
|
|
|
// Run unit tests for cryptographic scheme
|
2025-02-19 00:03:36 +00:00
|
|
|
return 7 + run();
|
2025-02-17 09:09:14 +00:00
|
|
|
}
|
2025-02-19 00:03:36 +00:00
|
|
|
|
2025-02-19 18:12:20 +00:00
|
|
|
int run() { return 1; }
|