No modified codes have been submitted for this Microcode.
Insecure I (Ncode)
Generates a textfile titled 'ncode.txt' to be used with Insecure II (uNcode)
25. July 2009
Generates a textfile titled 'ncode.txt' to be used with Insecure II (uNcode)
25. July 2009
#!/usr/bin/perl print "Enter text to Ncode:\n"; $text=<>;@text=split('', $text); foreach(@text){ $ascii=ord($_); $coded.="N"."n" x $ascii."N"; } `echo $coded >ncode.txt`;print $coded;