mirror of
https://github.com/python/cpython.git
synced 2025-09-29 11:45:57 +00:00
bpo-31933: fix blake2 multi-byte params on big endian platforms (GH-4250) (#4262)
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.
(cherry picked from commit dcfb0e3c04
)
This commit is contained in:
parent
ea80ae04e2
commit
a512493371
4 changed files with 46 additions and 4 deletions
|
@ -618,6 +618,24 @@ class HashLibTestCase(unittest.TestCase):
|
||||||
"ba80a53f981c4d0d6a2797b69f12f6e94c212f14685ac4b74b12bb6fdbffa2d1"+
|
"ba80a53f981c4d0d6a2797b69f12f6e94c212f14685ac4b74b12bb6fdbffa2d1"+
|
||||||
"7d87c5392aab792dc252d5de4533cc9518d38aa8dbf1925ab92386edd4009923")
|
"7d87c5392aab792dc252d5de4533cc9518d38aa8dbf1925ab92386edd4009923")
|
||||||
|
|
||||||
|
@requires_blake2
|
||||||
|
def test_case_blake2b_all_parameters(self):
|
||||||
|
# This checks that all the parameters work in general, and also that
|
||||||
|
# parameter byte order doesn't get confused on big endian platforms.
|
||||||
|
self.check('blake2b', b"foo",
|
||||||
|
"920568b0c5873b2f0ab67bedb6cf1b2b",
|
||||||
|
digest_size=16,
|
||||||
|
key=b"bar",
|
||||||
|
salt=b"baz",
|
||||||
|
person=b"bing",
|
||||||
|
fanout=2,
|
||||||
|
depth=3,
|
||||||
|
leaf_size=4,
|
||||||
|
node_offset=5,
|
||||||
|
node_depth=6,
|
||||||
|
inner_size=7,
|
||||||
|
last_node=True)
|
||||||
|
|
||||||
@requires_blake2
|
@requires_blake2
|
||||||
def test_blake2b_vectors(self):
|
def test_blake2b_vectors(self):
|
||||||
for msg, key, md in read_vectors('blake2b'):
|
for msg, key, md in read_vectors('blake2b'):
|
||||||
|
@ -643,6 +661,24 @@ class HashLibTestCase(unittest.TestCase):
|
||||||
self.check('blake2s', b"abc",
|
self.check('blake2s', b"abc",
|
||||||
"508c5e8c327c14e2e1a72ba34eeb452f37458b209ed63a294d999b4c86675982")
|
"508c5e8c327c14e2e1a72ba34eeb452f37458b209ed63a294d999b4c86675982")
|
||||||
|
|
||||||
|
@requires_blake2
|
||||||
|
def test_case_blake2s_all_parameters(self):
|
||||||
|
# This checks that all the parameters work in general, and also that
|
||||||
|
# parameter byte order doesn't get confused on big endian platforms.
|
||||||
|
self.check('blake2s', b"foo",
|
||||||
|
"bf2a8f7fe3c555012a6f8046e646bc75",
|
||||||
|
digest_size=16,
|
||||||
|
key=b"bar",
|
||||||
|
salt=b"baz",
|
||||||
|
person=b"bing",
|
||||||
|
fanout=2,
|
||||||
|
depth=3,
|
||||||
|
leaf_size=4,
|
||||||
|
node_offset=5,
|
||||||
|
node_depth=6,
|
||||||
|
inner_size=7,
|
||||||
|
last_node=True)
|
||||||
|
|
||||||
@requires_blake2
|
@requires_blake2
|
||||||
def test_blake2s_vectors(self):
|
def test_blake2s_vectors(self):
|
||||||
for msg, key, md in read_vectors('blake2s'):
|
for msg, key, md in read_vectors('blake2s'):
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
Fix Blake2 params leaf_size and node_offset on big endian platforms. Patch
|
||||||
|
by Jack O'Connor.
|
|
@ -166,7 +166,8 @@ py_blake2b_new_impl(PyTypeObject *type, PyObject *data, int digest_size,
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
self->param.leaf_length = (unsigned int)leaf_size;
|
// NB: Simple assignment here would be incorrect on big endian platforms.
|
||||||
|
store32(&(self->param.leaf_length), leaf_size);
|
||||||
|
|
||||||
if (node_offset_obj != NULL) {
|
if (node_offset_obj != NULL) {
|
||||||
node_offset = PyLong_AsUnsignedLongLong(node_offset_obj);
|
node_offset = PyLong_AsUnsignedLongLong(node_offset_obj);
|
||||||
|
@ -182,7 +183,8 @@ py_blake2b_new_impl(PyTypeObject *type, PyObject *data, int digest_size,
|
||||||
}
|
}
|
||||||
store48(&(self->param.node_offset), node_offset);
|
store48(&(self->param.node_offset), node_offset);
|
||||||
#else
|
#else
|
||||||
self->param.node_offset = node_offset;
|
// NB: Simple assignment here would be incorrect on big endian platforms.
|
||||||
|
store64(&(self->param.node_offset), node_offset);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (node_depth < 0 || node_depth > 255) {
|
if (node_depth < 0 || node_depth > 255) {
|
||||||
|
|
|
@ -166,7 +166,8 @@ py_blake2s_new_impl(PyTypeObject *type, PyObject *data, int digest_size,
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
self->param.leaf_length = (unsigned int)leaf_size;
|
// NB: Simple assignment here would be incorrect on big endian platforms.
|
||||||
|
store32(&(self->param.leaf_length), leaf_size);
|
||||||
|
|
||||||
if (node_offset_obj != NULL) {
|
if (node_offset_obj != NULL) {
|
||||||
node_offset = PyLong_AsUnsignedLongLong(node_offset_obj);
|
node_offset = PyLong_AsUnsignedLongLong(node_offset_obj);
|
||||||
|
@ -182,7 +183,8 @@ py_blake2s_new_impl(PyTypeObject *type, PyObject *data, int digest_size,
|
||||||
}
|
}
|
||||||
store48(&(self->param.node_offset), node_offset);
|
store48(&(self->param.node_offset), node_offset);
|
||||||
#else
|
#else
|
||||||
self->param.node_offset = node_offset;
|
// NB: Simple assignment here would be incorrect on big endian platforms.
|
||||||
|
store64(&(self->param.node_offset), node_offset);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (node_depth < 0 || node_depth > 255) {
|
if (node_depth < 0 || node_depth > 255) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue