One-time pad/Julia: Difference between revisions

Content added Content deleted
(Created page with "<lang julia># One-time pad colsole based app, uses internet random.org as source with localrand() backup using Dates, HTTP const configs = Dict("OTPdir" => ".") stringtohas...")
 
mNo edit summary
Line 1: Line 1:
<lang julia># One-time pad colsole based app, uses internet random.org as source with localrand() backup
This is a console based app for One Time Pad file management. It uses the internet random.org as source combined with local random number generation as a backup source of random letters.
<lang julia>using Dates, HTTP

using Dates, HTTP


const configs = Dict("OTPdir" => ".")
const configs = Dict("OTPdir" => ".")