hash_extender icon indicating copy to clipboard operation
hash_extender copied to clipboard

can't make hash_extender on kali 2021.3

Open linxidd opened this issue 2 years ago • 2 comments

when i try to make,got a problem like this ash_extender_engine.c: In function ‘md4_hash’: hash_extender_engine.c:362:3: error: ‘MD4_Init’ is deprecated: Since OpenSSL 3.0 [-Werror=deprecated-declarations] 362 | MD4_Init(&c); | ^~~~~~~~ In file included from hash_extender_engine.c:26: /usr/include/openssl/md4.h:50:27: note: declared here 50 | OSSL_DEPRECATEDIN_3_0 int MD4_Init(MD4_CTX *c); | ^~~~~~~~ hash_extender_engine.c:367:7: error: ‘MD4_Update’ is deprecated: Since OpenSSL 3.0 [-Werror=deprecated-declarations] 367 | MD4_Update(&c, "A", 1); | ^~~~~~~~~~ In file included from hash_extender_engine.c:26: /usr/include/openssl/md4.h:51:27: note: declared here 51 | OSSL_DEPRECATEDIN_3_0 int MD4_Update(MD4_CTX *c, const void *data, size_t len); | ^~~~~~~~~~ hash_extender_engine.c:375:3: error: ‘MD4_Update’ is deprecated: Since OpenSSL 3.0 [-Werror=deprecated-declarations] 375 | MD4_Update(&c, data, length); | ^~~~~~~~~~ In file included from hash_extender_engine.c:26: /usr/include/openssl/md4.h:51:27: note: declared here 51 | OSSL_DEPRECATEDIN_3_0 int MD4_Update(MD4_CTX *c, const void *data, size_t len); | ^~~~~~~~~~ hash_extender_engine.c:376:3: error: ‘MD4_Final’ is deprecated: Since OpenSSL 3.0 [-Werror=deprecated-declarations] 376 | MD4_Final(buffer, &c); | ^~~~~~~~~ how to solve this?

linxidd avatar Jul 30 '22 14:07 linxidd

i got the same error =(( sadge

nguyenvantien0903 avatar Oct 13 '22 03:10 nguyenvantien0903

I was able to fix this issue by removing '-Werror' from the make file.

forsoothe avatar Oct 20 '22 03:10 forsoothe