Three Letters Re: COMSEC: One Time Pad Generation
Sir: I agree with the response posted, and your reply. While older versions of Perl used relatively poor pseudo-random number seeds, the original author’s use of a time (at runtime) index as a pseudo random number (PRN) generator seed is a reasonably “secure” method of generating a series of PRNs. That was the first thing I looked for in his code, and such a method would be secure given the caveats you suggest. (That is, it won’t be up against true high-power cryptanalysis). If applied with random letters instead of words as suggested, (like a “real” one time pad), it …