changeset: 103173:afa5a16456ed user: Christian Heimes date: Wed Sep 07 01:45:22 2016 +0200 files: PC/config.c description: Issue #26798: Hello Winndows, my old friend. I've come to fix blake2 for you again. diff -r 45fc0c83ed42 -r afa5a16456ed PC/config.c --- a/PC/config.c Tue Sep 06 16:33:52 2016 -0700 +++ b/PC/config.c Wed Sep 07 01:45:22 2016 +0200 @@ -23,6 +23,7 @@ extern PyObject* PyInit__sha1(void); extern PyObject* PyInit__sha256(void); extern PyObject* PyInit__sha512(void); +extern PyObject* PyInit__blake2(void); extern PyObject* PyInit_time(void); extern PyObject* PyInit__thread(void); #ifdef WIN32 @@ -96,6 +97,7 @@ {"_sha1", PyInit__sha1}, {"_sha256", PyInit__sha256}, {"_sha512", PyInit__sha512}, + {"_blake2", PyInit__blake2}, {"time", PyInit_time}, #ifdef WITH_THREAD {"_thread", PyInit__thread},