Message274253
| Author | christian.heimes |
|---|---|
| Recipients | christian.heimes, gregory.p.smith, xiang.zhang |
| Date | 2016-09-02.16:30:15 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1472833815.87.0.17786077151.issue27928@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
You are right. Let's try this again. How do you like: >>> hashlib.scrypt(b'', n=2, r=2, p=3) Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: salt is required >>> hashlib.scrypt(b'', salt=b'') Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: n is required and must be an unsigned int >>> hashlib.scrypt(b'', n=None, r=2, p=3) Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: scrypt() argument 3 must be int, not None |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2016-09-02 16:30:15 | christian.heimes | set | recipients: + christian.heimes, gregory.p.smith, xiang.zhang |
| 2016-09-02 16:30:15 | christian.heimes | set | messageid: <1472833815.87.0.17786077151.issue27928@psf.upfronthosting.co.za> |
| 2016-09-02 16:30:15 | christian.heimes | link | issue27928 messages |
| 2016-09-02 16:30:15 | christian.heimes | create | |