Updated changelog

This commit is contained in:
WolverinDEV 2019-07-07 18:37:53 +02:00
parent ded3e54221
commit 7e4a15e9dc
1 changed files with 0 additions and 7 deletions

View File

@ -26,9 +26,6 @@
return std::string((const char*) result, (size_t) digestLength); \
} \
\
inline void name(const char* input, size_t length, uint8_t(& result)[digestLength]) { \
tomcrypt::name(input, length, result); \
} \
\
inline void name(const char* input, size_t length, uint8_t* result) { \
tomcrypt::name(input, length, result); \
@ -48,10 +45,6 @@
if(length == -1) length = strlen(input); \
return name(std::string(input, (size_t) length)); \
} \
\
inline void name(const char* input, size_t length, uint8_t(& result)[digestLength]) { \
method((u_char*) input, length, result); \
}\
\
inline void name(const char* input, size_t length, uint8_t* result) { \
method((u_char*) input, length, result); \