2024-04-09 14:55:13 +00:00
|
|
|
#include "rsa.h"
|
|
|
|
|
|
|
|
int main(int ac, char **av) {
|
|
|
|
if (ac == 2) {
|
|
|
|
(void)av;
|
2024-05-23 11:21:06 +00:00
|
|
|
rsa_t rsa = rsa_generate_keys();
|
2024-04-09 14:55:13 +00:00
|
|
|
(void)rsa;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
printf("usage: ./rsa message\n");
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2024-05-23 11:21:06 +00:00
|
|
|
|