Vigenère cipher: Difference between revisions

Content added Content deleted
(Updated D code)
Line 458:
 
=={{header|D}}==
{{works with|D|2.054056}}
 
<lang d>import std.stdio, std.string, std.ascii;
 
string encrypt(string txt, in string key)