Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0261c97d76 | ||
|
|
79b72fccca | ||
|
|
5843695a40 | ||
|
|
4f89fede56 | ||
|
|
53f89d4b4f | ||
|
|
bcb347a8d9 |
@@ -1,5 +1,8 @@
|
|||||||
(ns cipher-analytical-machine.ciphers.gamma
|
(ns cipher-analytical-machine.ciphers.gamma
|
||||||
(:require [clojure.string :as cs])
|
(:require
|
||||||
|
[clojure.set :as set]
|
||||||
|
[clojure.string :as cs]
|
||||||
|
[cipher-analytical-machine.ciphers.simple-substitution :as ss])
|
||||||
(:gen-class))
|
(:gen-class))
|
||||||
|
|
||||||
(defn add-mod
|
(defn add-mod
|
||||||
@@ -40,6 +43,17 @@
|
|||||||
(map vector array)
|
(map vector array)
|
||||||
(map (fn [[a g]] (add-mod a g module))))))
|
(map (fn [[a g]] (add-mod a g module))))))
|
||||||
|
|
||||||
|
(defn encrypt-message
|
||||||
|
"Encrypt a message using the gamma cipher. The function is case-insensitive. The key is an array of three elements [a b c]. The array contains integer in range [0, module)."
|
||||||
|
[key symbols message]
|
||||||
|
(let [module (count symbols)
|
||||||
|
table (ss/generate-sorted-substitution-table symbols)]
|
||||||
|
(->> message
|
||||||
|
(ss/decrypt-by-table (set/map-invert table))
|
||||||
|
(encrypt-array key module)
|
||||||
|
(ss/decrypt-by-table table)
|
||||||
|
(cs/join))))
|
||||||
|
|
||||||
(defn decrypt-array
|
(defn decrypt-array
|
||||||
"Decrypt an array using the gamma cipher. The function is case-insensitive. The key is an array of three elements [a b c]. The array contains integer in range [0, module)."
|
"Decrypt an array using the gamma cipher. The function is case-insensitive. The key is an array of three elements [a b c]. The array contains integer in range [0, module)."
|
||||||
[key module array]
|
[key module array]
|
||||||
@@ -51,3 +65,14 @@
|
|||||||
(map vector array)
|
(map vector array)
|
||||||
(map (fn [[a g]] (add-mod a g module))))))
|
(map (fn [[a g]] (add-mod a g module))))))
|
||||||
|
|
||||||
|
(defn decrypt-message
|
||||||
|
"Decrypt a message using the gamma cipher. The function is case-insensitive. The key is an array of three elements [a b c]. The array contains integer in range [0, module)."
|
||||||
|
[key symbols message]
|
||||||
|
(let [module (count symbols)
|
||||||
|
table (ss/generate-sorted-substitution-table symbols)]
|
||||||
|
(->> message
|
||||||
|
(ss/decrypt-by-table (set/map-invert table))
|
||||||
|
(decrypt-array key module)
|
||||||
|
(ss/decrypt-by-table table)
|
||||||
|
(cs/join))))
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
(ns cipher-analytical-machine.cli.actions.cryptography
|
(ns cipher-analytical-machine.cli.actions.cryptography
|
||||||
(:require
|
(:require
|
||||||
|
[clojure.string :as cs]
|
||||||
[cipher-analytical-machine.ciphers.caesar :as caesar]
|
[cipher-analytical-machine.ciphers.caesar :as caesar]
|
||||||
[cipher-analytical-machine.ciphers.simple-substitution :as ss]
|
[cipher-analytical-machine.ciphers.simple-substitution :as ss]
|
||||||
|
[cipher-analytical-machine.ciphers.gamma :as gamma]
|
||||||
[cipher-analytical-machine.parsers.parsers :as ps]
|
[cipher-analytical-machine.parsers.parsers :as ps]
|
||||||
[cipher-analytical-machine.parsers.simple-substitution :as pss])
|
[cipher-analytical-machine.parsers.simple-substitution :as pss])
|
||||||
(:gen-class))
|
(:gen-class))
|
||||||
@@ -38,6 +40,20 @@
|
|||||||
substitution-table (get data "table")]
|
substitution-table (get data "table")]
|
||||||
(ss/decrypt-message-with-caesar message key substitution-table symbols)))))
|
(ss/decrypt-message-with-caesar message key substitution-table symbols)))))
|
||||||
|
|
||||||
|
(defn gamma-actions
|
||||||
|
[options arguments action-type]
|
||||||
|
(let [message (:message options)
|
||||||
|
key (->> (cs/split (:key options) #",")
|
||||||
|
(map #(Integer/parseInt %))
|
||||||
|
(into []))
|
||||||
|
symbols (:symbols options)]
|
||||||
|
(cond
|
||||||
|
(= action-type :encrypt)
|
||||||
|
(gamma/encrypt-message key symbols message)
|
||||||
|
|
||||||
|
(= action-type :decrypt)
|
||||||
|
(gamma/decrypt-message key symbols message))))
|
||||||
|
|
||||||
(defn cryptography-actions
|
(defn cryptography-actions
|
||||||
[options arguments action-type]
|
[options arguments action-type]
|
||||||
(let [cipher (:cipher options)]
|
(let [cipher (:cipher options)]
|
||||||
@@ -46,5 +62,8 @@
|
|||||||
(caesar-actions options arguments action-type)
|
(caesar-actions options arguments action-type)
|
||||||
|
|
||||||
(= cipher "Simple substitution and Caesar")
|
(= cipher "Simple substitution and Caesar")
|
||||||
(simple-substitution-with-caesar-actions options arguments action-type))))
|
(simple-substitution-with-caesar-actions options arguments action-type)
|
||||||
|
|
||||||
|
(= cipher "Gamma")
|
||||||
|
(gamma-actions options arguments action-type))))
|
||||||
|
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
(option-values-as-list option values)))
|
(option-values-as-list option values)))
|
||||||
|
|
||||||
(def cipher-options
|
(def cipher-options
|
||||||
#{"Caesar" "Simple substitution and Caesar"})
|
#{"Caesar" "Simple substitution and Caesar" "Gamma"})
|
||||||
|
|
||||||
(def default-cipher "Caesar")
|
(def default-cipher "Caesar")
|
||||||
|
|
||||||
|
|||||||
@@ -39,6 +39,13 @@
|
|||||||
[4 32 15] 33 [3 14 1 4 18 19 23 8 27 17] [6 28 2 8 3 5 13 16 21 1]
|
[4 32 15] 33 [3 14 1 4 18 19 23 8 27 17] [6 28 2 8 3 5 13 16 21 1]
|
||||||
[1 2 3 ] 3 [0 2 1 1 0 1 2 2 0] [0 1 2 2 0 2 1 1 0])))
|
[1 2 3 ] 3 [0 2 1 1 0 1 2 2 0] [0 1 2 2 0 2 1 1 0])))
|
||||||
|
|
||||||
|
(deftest encrypt-message-test
|
||||||
|
(testing "Checking that the message is encrypted as expected"
|
||||||
|
(are [key symbols message expected]
|
||||||
|
(= expected (encrypt-message key symbols message))
|
||||||
|
[4 32 15] "абвгґдеєжзиіїйклмнопрстуфхцчшщьюя" "гкбґопужчн" "ешвжгдймсб"
|
||||||
|
[1 2 3 ] "абв" "авббабвва" "абввавбба")))
|
||||||
|
|
||||||
(deftest decrypt-array-test
|
(deftest decrypt-array-test
|
||||||
(testing "Checking that the message is decrypted as expected."
|
(testing "Checking that the message is decrypted as expected."
|
||||||
(are [key module array expected]
|
(are [key module array expected]
|
||||||
@@ -46,3 +53,10 @@
|
|||||||
[4 32 15] 33 [6 28 2 8 3 5 13 16 21 1] [3 14 1 4 18 19 23 8 27 17]
|
[4 32 15] 33 [6 28 2 8 3 5 13 16 21 1] [3 14 1 4 18 19 23 8 27 17]
|
||||||
[1 2 3 ] 3 [0 1 2 2 0 2 1 1 0] [0 2 1 1 0 1 2 2 0])))
|
[1 2 3 ] 3 [0 1 2 2 0 2 1 1 0] [0 2 1 1 0 1 2 2 0])))
|
||||||
|
|
||||||
|
(deftest decrypt-message-test
|
||||||
|
(testing "Checking that the message is decrypted as expected"
|
||||||
|
(are [key symbols message expected]
|
||||||
|
(= expected (decrypt-message key symbols message))
|
||||||
|
[4 32 15] "абвгґдеєжзиіїйклмнопрстуфхцчшщьюя" "ешвжгдймсб" "гкбґопужчн"
|
||||||
|
[1 2 3 ] "абв" "абввавбба" "авббабвва")))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user