18 lines
416 B
C
18 lines
416 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "../../include/encrypter.h"
|
|
#include "../../include/decrypter.h"
|
|
|
|
int
|
|
main(int args, char *argv[])
|
|
{
|
|
char *text = encryptText("Pepa smrdí.", "ZwBFjJmaRIikSJvhFPbZIRNFbjQRNyiOuLTexhgOpObHzyQgNT");
|
|
printf("%s\n", text);
|
|
|
|
text = decryptText(text, "ZwBFjJmaRIikSJvhFPbZIRNFbjQRNyiOuLTexhgOpObHzyQgNT");
|
|
printf("%s\n", text);
|
|
|
|
free(text);
|
|
return 0;
|
|
} |