aboutsummaryrefslogtreecommitdiffstats
path: root/advigenere.c
diff options
context:
space:
mode:
authorEliteTK <tomasz.kramkowski@gmail.com>2015-06-19 19:12:12 +0100
committerEliteTK <tomasz.kramkowski@gmail.com>2015-06-19 19:12:12 +0100
commitda87fcf25e0c94e57f00df84679cd6fadc56ed46 (patch)
tree3c53eea9db01039990455af870a2ca65e7e5a123 /advigenere.c
parent75d2e00662416224f4b745e0004f48f1fc1d9665 (diff)
parent7bf25fb8f0e4643a67894417a95d39e5901b1824 (diff)
downloadc-stuff-da87fcf25e0c94e57f00df84679cd6fadc56ed46.tar.gz
c-stuff-da87fcf25e0c94e57f00df84679cd6fadc56ed46.tar.xz
c-stuff-da87fcf25e0c94e57f00df84679cd6fadc56ed46.zip
Merge branch 'master' of https://github.com/EliteTK/c-stuff
Diffstat (limited to 'advigenere.c')
-rw-r--r--advigenere.c67
1 files changed, 67 insertions, 0 deletions
diff --git a/advigenere.c b/advigenere.c
new file mode 100644
index 0000000..5ada41c
--- /dev/null
+++ b/advigenere.c
@@ -0,0 +1,67 @@
+/*
+ * Copyright (C) 2015 Tomasz Kramkowski <tk@the-tk.com>
+ *
+ * This program is free software. It is licensed under version 3 of the
+ * GNU General Public License.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see [http://www.gnu.org/licenses/].
+ */
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <ctype.h>
+
+#define CTOI(c) ((c) - 'A')
+#define ITOC(c) ((c) + 'A')
+
+void preprocess(char *str);
+
+int main(int argc, char **argv)
+{
+ char *key, *ciphertext, *decoded;
+ size_t keylength, textlength;
+
+ if (argc != 3) {
+ fprintf(stderr, "Usage: %s <ciphertext> <key>\n", argv[0]);
+ exit(EXIT_FAILURE);
+ }
+
+ ciphertext = argv[1];
+ key = argv[2];
+
+ preprocess(key);
+ preprocess(ciphertext);
+
+ keylength = strlen(key);
+ textlength = strlen(ciphertext);
+
+ decoded = malloc(textlength + 1);
+
+ for (size_t i = 0; i < textlength; i++)
+ decoded[i] = (CTOI(ciphertext[i]) + CTOI(key[i % keylength])) % 26;
+
+ for (unsigned offset = 0; offset < 26; offset++) {
+ printf("%.2u : ", offset);
+ for (unsigned i = 0; i < textlength; i++)
+ putchar(ITOC((decoded[i] + offset) % 26));
+ putchar('\n');
+ }
+
+ free(decoded);
+
+ return EXIT_SUCCESS;
+}
+
+void preprocess(char *str)
+{
+ char *src = str, *dest = str;
+
+ while (*src != '\0') {
+ if (isalpha(*src))
+ *(dest++) = toupper(*src);
+ src++;
+ }
+
+ *dest = '\0';
+}