8 lines
176 B
C
8 lines
176 B
C
|
#include <stdint.h>
|
||
|
|
||
|
__attribute__((section(".text"))) int cryptographic_test() {
|
||
|
// Run unit tests for cryptographic scheme
|
||
|
//while(1); // Debug loop
|
||
|
return 7;
|
||
|
}
|