mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-27 00:19:25 -05:00
76f0678820
add funtion to get i2p certificate crypto algo names
13 lines
299 B
C
13 lines
299 B
C
#include <stddef.h>
|
|
|
|
#include "../src/ext/tinytest.h"
|
|
#include "../src/ext/tinytest_macros.h"
|
|
|
|
extern struct testcase_t b32_tests[];
|
|
|
|
struct testgroup_t test_groups[] = {{"b32/", b32_tests}, END_OF_GROUPS};
|
|
|
|
int main(int argc, const char **argv) {
|
|
return tinytest_main(argc, argv, test_groups);
|
|
}
|