66f3bffd10
is to provide a powerful and extensible environment for solving classical (pen-and-paper) ciphers, providing as much automation as possible. Classical ciphers include common schemes like monoalphabetic substitutions, where each letter of the alphabet is mapped to another (usually different) letter consistently through the text. The first version of Crank is restricting itself to these special ciphers. Other algorithms forever devoid of Crank's attentions include Enigma, RSA, DES, MurkelFish, or anything else invented after 1900.
16 lines
592 B
Plaintext
16 lines
592 B
Plaintext
--- crank.h.orig Mon Jan 29 23:44:56 2001
|
|
+++ crank.h Mon Jan 29 23:47:29 2001
|
|
@@ -67,9 +67,9 @@ typedef struct {
|
|
|
|
#define GLOBAL_TRANSFORMED_TEXT (gtk_editable_get_chars(GTK_EDITABLE(textarea), 0, -1))
|
|
|
|
-#define DEFAULT_SLFT "data/slft.dat"
|
|
-#define DEFAULT_BIFT "data/bift.dat"
|
|
-#define DEFAULT_TRIFT "data/trift.dat"
|
|
+#define DEFAULT_SLFT "!!LOCALBASE!!/share/crank/slft.dat"
|
|
+#define DEFAULT_BIFT "!!LOCALBASE!!/share/crank/bift.dat"
|
|
+#define DEFAULT_TRIFT "!!LOCALBASE!!/share/crank/trift.dat"
|
|
|
|
#define STR_FREQUENCY "Frequency"
|
|
#define STR_STANDARD_FREQUENCY "Standard Frequency"
|