diff options
author | Christian Heimes <christian@python.org> | 2016-09-07 02:49:11 +0200 |
---|---|---|
committer | Christian Heimes <christian@python.org> | 2016-09-07 02:49:11 +0200 |
commit | cc554b65f18d7585203e5f225cfcbe3c04f1359b (patch) | |
tree | bf0c92e220713337a8090d4cb18bd043bb70b4fb /Modules/_blake2/blake2b_impl.c | |
parent | 32a2ceead7ad86c1641f24b710c4d4683c1e98f3 (diff) | |
download | cpython-git-cc554b65f18d7585203e5f225cfcbe3c04f1359b.tar.gz |
Silence two warnings in blake2. key_length is between 0 and 64 (block size).
Diffstat (limited to 'Modules/_blake2/blake2b_impl.c')
-rw-r--r-- | Modules/_blake2/blake2b_impl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_blake2/blake2b_impl.c b/Modules/_blake2/blake2b_impl.c index 1c67744f75..9c3d8f54d5 100644 --- a/Modules/_blake2/blake2b_impl.c +++ b/Modules/_blake2/blake2b_impl.c @@ -208,7 +208,7 @@ py_blake2b_new_impl(PyTypeObject *type, PyObject *data, int digest_size, BLAKE2B_KEYBYTES); goto error; } - self->param.key_length = key->len; + self->param.key_length = (uint8_t)key->len; } /* Initialize hash state. */ |