2024-02-14 16:14:03 +00:00
|
|
|
#include "rsa.h"
|
|
|
|
|
|
|
|
int main(int ac, char **av) {
|
|
|
|
if (ac == 2) {
|
2024-02-15 20:26:40 +00:00
|
|
|
(void)av;
|
|
|
|
rsa_t rsa = rsa_generate_keys(RSA_BLOCK_SIZE);
|
|
|
|
(void)rsa;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
printf("usage: ./rsa message\n");
|
2024-02-14 16:14:03 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|