Files
cpython/Modules
Jack O'Connor dcfb0e3c04 bpo-31933: fix blake2 multi-byte params on big endian platforms (#4250)
All Blake2 params have to be encoded in little-endian byte order. For
the two multi-byte integer params, leaf_length and node_offset, that
means that assigning a native-endian integer to them appears to work on
little-endian platforms, but gives the wrong result on big-endian. The
current libb2 API doesn't make that very clear, and @sneves is working
on new API functions in the GH issue above. In the meantime, we can work
around the problem by explicitly assigning little-endian values to the
parameter block.

See https://github.com/BLAKE2/libb2/issues/12.
2017-11-03 20:02:41 +01:00
..
2017-03-23 17:53:47 +02:00
2016-10-18 16:29:27 +02:00
2016-10-18 16:29:27 +02:00
2016-09-06 10:46:49 -07:00
2017-10-16 12:49:41 -07:00
2016-03-07 14:52:46 -05:00
2017-09-14 18:13:16 -07:00
2017-01-31 23:31:10 -08:00

Source files for standard library extension modules,
and former extension modules that are now builtin modules.