added more testing

This commit is contained in:
Václav Šmejkal 2022-03-08 19:37:00 +01:00
parent 5ebe0bcd00
commit ceace1ccda

View File

@ -6,12 +6,10 @@
int int
main(int args, char *argv[]) main(int args, char *argv[])
{ {
char *text = encryptText("Pepa smrdi.", NULL); char *text = encryptText("Pepa smrdí.", "dsadhagsdhuhasvbdzgavdgasvgzduasvgzdavdhbashudbuas");
printf("%s\n", text); printf("%s\n", text);
text = decryptText(text, "someRandomKeyLulw"); text = decryptText(text, "dsadhagsdhuhasvbdzgavdgasvgzduasvgzdavdhbashudbuas");
printf("%s\n", text); printf("%s\n", text);
return 0; return 0;
} }