This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

作者 PaulMcMillan
收信人 Arfrever, Mark.Shannon, PaulMcMillan, Zhiping.Deng, alex, barry, benjamin.peterson, christian.heimes, dmalcolm, eric.araujo, georg.brandl, gvanrossum, jcea, lemburg, pitrou, terry.reedy, vstinner
日期 2012-01-05.00:44:24
SpamBayes Score 1.038236e-06
Marked as misclassified
Message-id <CAO_YWRUV+P54dLaJ9xNS07nh1bZd8jmiBpFMT8Qh7W59Yq38aw@mail.gmail.com>
In-reply-to <1325723771.39.0.672443575759.issue13703@psf.upfronthosting.co.za>
内容
> My proposition only adds two XOR to hash(str) (outside the loop on Unicode characters), so I expect a ridiculous overhead. I don't know yet how hard it is to guess the secret from hash(str) output.

It doesn't work much better than a single random seed. Calculating the
hash of a null byte gives you the xor of your two seeds. An attacker
can still cause collisions inside the vulnerable hash function, your
change doesn't negate those internal collisions. Also, strings of all
null bytes collide trivially.
历史
日期 用户 动作 参数
2012-01-05 00:44:25PaulMcMillan修改recipients: + PaulMcMillan, lemburg, gvanrossum, barry, georg.brandl, terry.reedy, jcea, pitrou, vstinner, christian.heimes, benjamin.peterson, eric.araujo, Arfrever, alex, dmalcolm, Mark.Shannon, Zhiping.Deng
2012-01-05 00:44:25PaulMcMillan链接issue13703 messages
2012-01-05 00:44:24PaulMcMillan创建