14 lines
201 B
C
14 lines
201 B
C
|
#include "rsa.h"
|
||
|
|
||
|
int main(int ac, char **av) {
|
||
|
if (ac == 2) {
|
||
|
(void)av;
|
||
|
rsa_t rsa = rsa_generate_keys(RSA_BLOCK_SIZE);
|
||
|
(void)rsa;
|
||
|
}
|
||
|
else {
|
||
|
printf("usage: ./rsa message\n");
|
||
|
}
|
||
|
return 0;
|
||
|
}
|