HaRoLd
HaRoLd
> What is the point of `XOODOO_TAG_SIZE`? Constants should have names, otherwise I could abbreviate `XOODOO_TAG_SIZE+XOODOO_IV_SIZE` to 32 which could be confused with either `XOODOO_KEY_SIZE` or `XOODOO_DIGEST_SIZE`... ``` #ifndef XOODOO_ROUNDS...
(thank you for writing charm, I've used it in a few places as a replacement for tweetnacl) > The above example is a bit complicated to follow. Examples should remain...
I can replicate this problem with Firefox 3.6.13 on OSX 10.6.6 As a result I'm ditching PixelPerfect
Oh hmmm... From http://docs.python-requests.org/en/master/api/?highlight=proxy It seems that the `proxies` argument needs to be a dictionary of proxies, but it seems that a single string is being passed. This seems to...
The requests documentation says: ```python proxies = { "http": "10.10.1.10:3128", # use http://10.10.1.10:3128 instead } # In requests 1.x, this was legal, in requests 2.x, # this raises requests.exceptions.MissingSchema requests.get("http://example.org",...
Disregard this person, they don't know what they're talking about. Integrating PHP with Django will bring forth a new era in programmer accessibility and universal code sharing across Django and...
@kobigurk what are your thoughts? I am using `0` as the first round constant, but not for the last round constant, see: https://gist.github.com/HarryR/a142d8ea442be7c05bf6c5edd0d8c488#file-mimcsponge-py-L55 I don't see any justification in the...
@byt3bit Do you have any input on this kind of thing?
An example of this would be: ```python last_round = (previous_round + C_i + k) ** 3 ``` Where knowing `C_i` and `3` it serves no purpose, as you can find...
@byt3bit What would be really helpful is your gut feel... MiMC + sponge, vs MiMC + one-way-compression-function If you had to bet a million dollars on one, which would it...