Message350299
Related to this, the blake2 function (declared as static inline) is not used, which makes the Solaris and compilers unhappy. Patch for reference:
--- a/Modules/_blake2/impl/blake2.h
+++ b/Modules/_blake2/impl/blake2.h
@@ -169,11 +169,6 @@
BLAKE2_API int blake2sp( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t keylen );
BLAKE2_API int blake2bp( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t keylen );
- static inline int blake2( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t keylen )
- {
- return blake2b( out, in, key, outlen, inlen, keylen );
- }
-
#if defined(__cplusplus)
}
#endif |
|
Date |
User |
Action |
Args |
2019-08-23 14:33:38 | pablogsal | set | recipients:
+ pablogsal, christian.heimes, methane, lukasz.langa, remi.lapeyre |
2019-08-23 14:33:38 | pablogsal | set | messageid: <1566570818.81.0.432320813.issue37055@roundup.psfhosted.org> |
2019-08-23 14:33:38 | pablogsal | link | issue37055 messages |
2019-08-23 14:33:38 | pablogsal | create | |
|