mirror of
https://github.com/Smaug123/ClassicalCiphers.jl
synced 2025-10-08 10:58:39 +00:00
This is only my attempt at an implementation. @r0cketr1kky can still have another attempt, or refine my solution, but it is here now for people to use. TODO: add better docstrings.
24 lines
377 B
Julia
24 lines
377 B
Julia
using ClassicalCiphers
|
|
using Test
|
|
|
|
tests = [
|
|
"playfair",
|
|
"vigenere",
|
|
"monoalphabetic",
|
|
"caesar",
|
|
"portas",
|
|
"affine",
|
|
"enigma",
|
|
"hill",
|
|
"solitaire",
|
|
"railfence"
|
|
]
|
|
|
|
println("Running tests:")
|
|
|
|
for t in tests
|
|
test_fn = "$t.jl"
|
|
println(" * $test_fn")
|
|
include(test_fn)
|
|
end
|