diff --git a/Implementierung/lib/md2_impls/md2_1.h b/Implementierung/lib/md2_impls/md2_1.h index 8777277..e6abb93 100644 --- a/Implementierung/lib/md2_impls/md2_1.h +++ b/Implementierung/lib/md2_impls/md2_1.h @@ -8,15 +8,6 @@ #include #include -#include "../io.h" - -/** - * @brief This implementation optimizes small operations and uses SIMD - * - * @param _ unused - * @param filename name of the file to load - * @param out - */ void md2_hash_1(size_t len, const uint8_t buf[len], uint8_t out[16]); void md2_checksum_1(size_t len, uint8_t* buf); diff --git a/Implementierung/lib/md2_impls/md2_3.h b/Implementierung/lib/md2_impls/md2_3.h index e51c783..ffac9fc 100644 --- a/Implementierung/lib/md2_impls/md2_3.h +++ b/Implementierung/lib/md2_impls/md2_3.h @@ -10,13 +10,6 @@ #include #include -/** - * @brief Diese Implementierung benutzt Threads zum Berechnen des Hashs - * - * @param len - * @param buf - * @param out - */ void md2_hash_3(size_t len, const uint8_t buf[len], uint8_t out[16]); #endif // MD2_3_H \ No newline at end of file diff --git a/Implementierung/lib/md2_impls/md2_reference/md2_reference.h b/Implementierung/lib/md2_impls/md2_reference/md2_reference.h index 1a32a4a..962004a 100644 --- a/Implementierung/lib/md2_impls/md2_reference/md2_reference.h +++ b/Implementierung/lib/md2_impls/md2_reference/md2_reference.h @@ -49,15 +49,6 @@ void MD2Final PROTO_LIST((unsigned char[16], MD2_CTX *)); #include #include -#include "../../io.h" - -/** - * @brief This implementation is the reference implementation - * - * @param _ unused - * @param filename name of the file to load - * @param out - */ void md2_hash_ref(size_t len, const uint8_t buf[len], uint8_t out[16]); #endif // MD2_REF_H \ No newline at end of file