From 0261c97d76bb084dd95505122130f6ca34998000 Mon Sep 17 00:00:00 2001 From: KKlochko Date: Tue, 31 Oct 2023 16:50:25 +0200 Subject: [PATCH] Add the option for the gamma cipher. --- src/cipher_analytical_machine/cli/options.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cipher_analytical_machine/cli/options.clj b/src/cipher_analytical_machine/cli/options.clj index fc9394e..dd93152 100644 --- a/src/cipher_analytical_machine/cli/options.clj +++ b/src/cipher_analytical_machine/cli/options.clj @@ -22,7 +22,7 @@ (option-values-as-list option values))) (def cipher-options - #{"Caesar" "Simple substitution and Caesar"}) + #{"Caesar" "Simple substitution and Caesar" "Gamma"}) (def default-cipher "Caesar")