One-time pad/Julia: Difference between revisions

Content added Content deleted
mNo edit summary
m (Fixed syntax highlighting.)
Line 1: Line 1:
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.
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
<syntaxhighlight lang="julia">using Dates, HTTP


const configs = Dict("OTPdir" => ".")
const configs = Dict("OTPdir" => ".")
Line 299: Line 299:


onetimepadapp()
onetimepadapp()
</syntaxhighlight>
</lang>