This commit is contained in:
+1
-1
@@ -1,4 +1,4 @@
|
||||
(ns cipher-analytical-machine.cipher-analyzers
|
||||
(ns cipher-analytical-machine.analyzers.analyzers
|
||||
(:require [clojure.string :as cs])
|
||||
(:gen-class))
|
||||
|
||||
+4
-4
@@ -1,9 +1,9 @@
|
||||
(ns cipher-analytical-machine.caesar-analyzers
|
||||
(:require [cipher-analytical-machine.caesar :as caesar]
|
||||
(ns cipher-analytical-machine.analyzers.caesar
|
||||
(:require [cipher-analytical-machine.ciphers.caesar :as caesar]
|
||||
[clojure.string :as cs]
|
||||
[cipher-analytical-machine.cipher-analyzers :as ca])
|
||||
[cipher-analytical-machine.analyzers.analyzers :as ca])
|
||||
(:import [cipher_analytical_machine.ciphers.caesar Decrypted]
|
||||
[cipher_analytical_machine.analizers.caesar FrequencyAnalyzer])
|
||||
[cipher_analytical_machine.analyzers.caesar FrequencyAnalyzer])
|
||||
(:gen-class))
|
||||
|
||||
(defn get-all-texts
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
(ns cipher-analytical-machine.language-analyzer
|
||||
(ns cipher-analytical-machine.analyzers.language
|
||||
(:import [org.apache.tika.language LanguageIdentifier])
|
||||
(:gen-class))
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
(ns cipher-analytical-machine.caesar
|
||||
(ns cipher-analytical-machine.ciphers.caesar
|
||||
(:require [clojure.string :as cs])
|
||||
(:gen-class))
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
(ns cipher-analytical-machine.cli
|
||||
(ns cipher-analytical-machine.cli.cli
|
||||
(:require
|
||||
[cipher-analytical-machine.file :as file]
|
||||
[cipher-analytical-machine.caesar :as caesar]
|
||||
[cipher-analytical-machine.caesar-analyzers :as caesar-analyzers]
|
||||
[cipher-analytical-machine.symbol-factories :as sf]
|
||||
[cipher-analytical-machine.symbol-frequences :as symbol-frequences]
|
||||
[cipher-analytical-machine.cli.file :as file]
|
||||
[cipher-analytical-machine.ciphers.caesar :as caesar]
|
||||
[cipher-analytical-machine.analyzers.caesar :as caesar-analyzers]
|
||||
[cipher-analytical-machine.symbols.factories :as sf]
|
||||
[cipher-analytical-machine.symbols.frequences :as symbol-frequences]
|
||||
[clojure.string :as cs]
|
||||
[clojure.tools.cli :refer [parse-opts]])
|
||||
(:gen-class))
|
||||
@@ -1,4 +1,4 @@
|
||||
(ns cipher-analytical-machine.file
|
||||
(ns cipher-analytical-machine.cli.file
|
||||
(:require [clojure.java.io :as io])
|
||||
(:gen-class))
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
(ns cipher-analytical-machine.core
|
||||
(:require
|
||||
[cipher-analytical-machine.cli :as cli])
|
||||
[cipher-analytical-machine.cli.cli :as cli])
|
||||
(:gen-class))
|
||||
|
||||
(defn -main
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
(ns cipher-analytical-machine.symbol-factories
|
||||
(ns cipher-analytical-machine.symbols.factories
|
||||
(:require [clojure.string :as cs])
|
||||
(:gen-class))
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
(ns cipher-analytical-machine.symbol-frequences
|
||||
(ns cipher-analytical-machine.symbols.frequences
|
||||
(:gen-class))
|
||||
|
||||
(def english-letter-frequences {
|
||||
Reference in New Issue
Block a user