Tim Daubenschütz

Results 226 issues of Tim Daubenschütz

fixes #12 I have not tested this fix as I didn't have time to set up a PostgreSQL myself yet. Please feel free to close if this doesn't address the...

Screenshot from my phone: ![signal-2021-10-25-134036_001](https://user-images.githubusercontent.com/2758453/138688817-429a3210-1274-4739-a0bb-c564bbf9c4e1.jpeg) Note the difference in projects. On Desktop: - BLS signatures - hive - watch the burn - synthetix - trueblocks - etc. on mobile: -...

Direct comparisons of strings in node.js should be avoided given that an attacker could brute force their way to the key, given a timing attack strategy. The node.js docs recommend...

[timing attack](https://javascript.plainenglish.io/what-are-timing-attacks-and-how-to-prevent-them-using-nodejs-158cc7e2d70c) Line: https://github.com/Anish-Agnihotri/quadratic-voting/blob/f5bb541ac14c62fe7a0e5c5d45ab42c9d0ae95a3/pages/api/events/details.js#L22 I recommend using: https://nodejs.org/api/crypto.html#cryptotimingsafeequala-b

related to: https://github.com/lukechilds/browser-env/issues/82 According to [fetch spec](https://fetch.spec.whatwg.org), it's available under [`WindowOrWorkerGlobalScope`](https://fetch.spec.whatwg.org/#fetch-method). related: https://github.com/jsdom/jsdom/issues/1724

See this method: https://github.com/bigchaindb/cryptoconditions/blob/master/cryptoconditions/types/sha256.py#L120 `PreimageSha256.validate` always yields `True`, while all other respective types validate by checking external parameters (usually the `message` parameter). A user would expect that calling `.validate` on...

For some values `VerifyingKey.validate` throws `ValueError` or `AttributeError`, while it should just return `False`. As far as I remember, this happened when the signature parameter was out of the expected...

Hi, consider the following file ``` "topics":["0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c","0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56"],"data":"0x00000000000000000000000000000000000000000000000007dec64b14149040","blockNumber":"0xb079ad","transactionHash":"0x87e4e72189966e7f1e5578810c46a9c8180f9d240c4bb511c58d568bc352d300","transactionIndex":"0x1d0","blockHash":"0x413cf9b1f779d0b6bd52113aa6bd3462b5010cd8c50a1229ac28103d44c4d640","logIndex":"0x3","removed":false},{"address":"0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2","topics" ``` I can open it with less at a specific cursor, e.g. `less -p 0x413cf9b1f779d0b6bd52113aa6bd3462b5010cd8c50a1229ac28103d44c4d640 file` and then the `0x413cf9b1f779d0b6bd52113aa6bd3462b5010cd8c50a1229ac28103d44c4d640` gets highlighted in...