mirror of
https://github.com/monero-project/monero.git
synced 2025-08-02 05:26:11 -04:00
Merge pull request #1561
d561f4ad
enable clang checks that were disabled (Chris Vickio)0aefb2f6
remove std::move from return statements (pessimizing-move warning) (Chris Vickio)629d5b76
change counter from bool to int (deprecated-increment-bool warning) (Chris Vickio)fb76d439
add extra braces around subobjects (missing-braces warning) (Chris Vickio)3b6d5f25
make struct/class declarations consistent (mismatched-tags warning) (Chris Vickio)fcf66925
remove unused fields from network_throttle (unused-private-field warning) (Chris Vickio)296f8c16
inline unused function (for unused-function warning) (Chris Vickio)
This commit is contained in:
commit
ec323d8c3f
9 changed files with 71 additions and 77 deletions
|
@ -74,7 +74,7 @@ namespace md5
|
|||
static void MD5Init(MD5_CTX * context);
|
||||
static void MD5Update( MD5_CTX *context, const unsigned char *input, unsigned int inputLen );
|
||||
static void MD5Final ( unsigned char digest[16], MD5_CTX *context );
|
||||
static void hmac_md5(const unsigned char* text, int text_len, const unsigned char* key, int key_len, unsigned char *digest);
|
||||
static inline void hmac_md5(const unsigned char* text, int text_len, const unsigned char* key, int key_len, unsigned char *digest);
|
||||
|
||||
|
||||
inline bool md5( unsigned char *input, int ilen, unsigned char output[16] )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue