diff --git a/src/core/lib/utils/crypto.c b/src/core/lib/utils/crypto.c index 4cc4c60..64cc63a 100644 --- a/src/core/lib/utils/crypto.c +++ b/src/core/lib/utils/crypto.c @@ -21,7 +21,7 @@ along with this program. If not, see . #include #include -unsigned long why2_checksum_segment(char *input) +unsigned long why2_checksum_segment(char *input) //I ABSOLUTELY DO NOT RECOMMEND USING THIS WITH LARGE KEYS!!! { unsigned long input_size = strlen(input); unsigned long segmented_input_size = ceil(input_size / (double) WHY2_CHECKSUM_SEGMENT_SIZE) * WHY2_CHECKSUM_SEGMENT_SIZE; //CALCULATE CLOSEST 4*n TO input