Slashdot Mirror


User: collinstocks

collinstocks's activity in the archive.

Stories
0
Comments
180
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 180

  1. Re:GPL 3 on GPLv3's Implications Hitting Home For Lawyers · · Score: 2, Informative

    Charge for support or for some other service.

  2. Re:Truecrypt on Nominations Open For "Most Likely to be Shut Down By Government" · · Score: 1

    I looked at the os.py source file, and urandom() is probably really nt.urandom() since, if windows, does:

    from nt import *
    from ntpath import *

    and I doubt that it is in ntpath

  3. Re:Truecrypt on Nominations Open For "Most Likely to be Shut Down By Government" · · Score: 1

    Oh, I was talking about the documentation of the urandom() function in Python.

    import os
    help(os.urandom)

    I can't swear to it, though, since I haven't used windows for such things in a very long time.

  4. Re:Truecrypt on Nominations Open For "Most Likely to be Shut Down By Government" · · Score: 1

    I don't know, but the documentation on it says that it produces cryptographically secure random numbers. And I believe that it actually is based on the actual system call, since it is imported from the winnt module or something like that. Anyway, I don't use Window$ anymore, so it so no concern of mine. /dev/random and /dev/urandom are good for me.

    By the way, according to the man page, /dev/urandom has never been shown not to be cryptographically secure, though it theoretically could be.

  5. Re:Truecrypt on Nominations Open For "Most Likely to be Shut Down By Government" · · Score: 1, Troll

    I remember about a year ago, I did fifteen or so different statistical tests on the random numbers generated by the Windows urandom system call in Python. It turns out that the numbers are not cryptographically secure, and most of the results of the statistical tests were p less than 0.0001 or p greater than 0.9999. That is, very high correlation between "random" numbers. You want something 0.01 less than p less than 0.99 for something even moderately secure.