This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pablogsal
Recipients christian.heimes, lukasz.langa, methane, pablogsal, remi.lapeyre
Date 2019-08-23.14:33:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1566570818.81.0.432320813.issue37055@roundup.psfhosted.org>
In-reply-to
Content
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
History
Date User Action Args
2019-08-23 14:33:38pablogsalsetrecipients: + pablogsal, christian.heimes, methane, lukasz.langa, remi.lapeyre
2019-08-23 14:33:38pablogsalsetmessageid: <1566570818.81.0.432320813.issue37055@roundup.psfhosted.org>
2019-08-23 14:33:38pablogsallinkissue37055 messages
2019-08-23 14:33:38pablogsalcreate