ne_md5.c: In function ‘ne_md5_create_ctx’: ne_md5.c:377:5: warning: ‘MD5_Init’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 377 | if (MD5_Init(&ctx->ctx) != 1) { | ^~ In file included from ne_md5.c:34: /usr/include/openssl/md5.h:49:27: note: declared here 49 | OSSL_DEPRECATEDIN_3_0 int MD5_Init(MD5_CTX *c); | ^~~~~~~~ ne_md5.c: In function ‘ne_md5_process_block’: ne_md5.c:388:5: warning: ‘MD5_Update’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 388 | MD5_Update(&ctx->ctx, buffer, len); | ^~~~~~~~~~ /usr/include/openssl/md5.h:50:27: note: declared here 50 | OSSL_DEPRECATEDIN_3_0 int MD5_Update(MD5_CTX *c, const void *data, size_t len); | ^~~~~~~~~~ ne_md5.c: In function ‘ne_md5_process_bytes’: ne_md5.c:394:5: warning: ‘MD5_Update’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 394 | MD5_Update(&ctx->ctx, buffer, len); | ^~~~~~~~~~ /usr/include/openssl/md5.h:50:27: note: declared here 50 | OSSL_DEPRECATEDIN_3_0 int MD5_Update(MD5_CTX *c, const void *data, size_t len); | ^~~~~~~~~~ ne_md5.c: In function ‘ne_md5_finish_ctx’: ne_md5.c:399:5: warning: ‘MD5_Final’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 399 | MD5_Final(resbuf, &ctx->ctx); | ^~~~~~~~~ /usr/include/openssl/md5.h:51:27: note: declared here 51 | OSSL_DEPRECATEDIN_3_0 int MD5_Final(unsigned char *md, MD5_CTX *c); | ^~~~~~~~~ ne_md5.c: In function ‘ne_md5_reset_ctx’: ne_md5.c:411:5: warning: ‘MD5_Init’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 411 | MD5_Init(&ctx->ctx); | ^~~~~~~~ /usr/include/openssl/md5.h:49:27: note: declared here 49 | OSSL_DEPRECATEDIN_3_0 int MD5_Init(MD5_CTX *c); | ^~~~~~~~ ne_ntlm.c: In function ‘setup_des_key’: ne_ntlm.c:262:3: warning: ‘DES_set_odd_parity’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 262 | DES_set_odd_parity(&key); | ^~~~~~~~~~~~~~~~~~ In file included from ne_ntlm.c:171: /usr/include/openssl/des.h:176:28: note: declared here 176 | OSSL_DEPRECATEDIN_3_0 void DES_set_odd_parity(DES_cblock *key); | ^~~~~~~~~~~~~~~~~~ ne_ntlm.c:263:3: warning: ‘DES_set_key’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 263 | DES_set_key(&key, ks); | ^~~~~~~~~~~ /usr/include/openssl/des.h:186:5: note: declared here 186 | int DES_set_key(const_DES_cblock *key, DES_key_schedule *schedule); | ^~~~~~~~~~~ ne_ntlm.c: In function ‘calc_resp’: ne_ntlm.c:278:3: warning: ‘DES_ecb_encrypt’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 278 | DES_ecb_encrypt((DES_cblock*) plaintext, (DES_cblock*) results, | ^~~~~~~~~~~~~~~ /usr/include/openssl/des.h:105:6: note: declared here 105 | void DES_ecb_encrypt(const_DES_cblock *input, DES_cblock *output, | ^~~~~~~~~~~~~~~ ne_ntlm.c:282:3: warning: ‘DES_ecb_encrypt’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 282 | DES_ecb_encrypt((DES_cblock*) plaintext, (DES_cblock*) (results+8), | ^~~~~~~~~~~~~~~ /usr/include/openssl/des.h:105:6: note: declared here 105 | void DES_ecb_encrypt(const_DES_cblock *input, DES_cblock *output, | ^~~~~~~~~~~~~~~ ne_ntlm.c:286:3: warning: ‘DES_ecb_encrypt’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 286 | DES_ecb_encrypt((DES_cblock*) plaintext, (DES_cblock*) (results+16), | ^~~~~~~~~~~~~~~ /usr/include/openssl/des.h:105:6: note: declared here 105 | void DES_ecb_encrypt(const_DES_cblock *input, DES_cblock *output, | ^~~~~~~~~~~~~~~ ne_ntlm.c: In function ‘mkhash’: ne_ntlm.c:331:5: warning: ‘DES_ecb_encrypt’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 331 | DES_ecb_encrypt((DES_cblock *)magic, (DES_cblock *)lmbuffer, | ^~~~~~~~~~~~~~~ /usr/include/openssl/des.h:105:6: note: declared here 105 | void DES_ecb_encrypt(const_DES_cblock *input, DES_cblock *output, | ^~~~~~~~~~~~~~~ ne_ntlm.c:335:5: warning: ‘DES_ecb_encrypt’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 335 | DES_ecb_encrypt((DES_cblock *)magic, (DES_cblock *)(lmbuffer+8), | ^~~~~~~~~~~~~~~ /usr/include/openssl/des.h:105:6: note: declared here 105 | void DES_ecb_encrypt(const_DES_cblock *input, DES_cblock *output, | ^~~~~~~~~~~~~~~ ne_ntlm.c:355:5: warning: ‘MD4_Init’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 355 | MD4_Init(&md4); | ^~~~~~~~ In file included from ne_ntlm.c:172: /usr/include/openssl/md4.h:50:27: note: declared here 50 | OSSL_DEPRECATEDIN_3_0 int MD4_Init(MD4_CTX *c); | ^~~~~~~~ ne_ntlm.c:356:5: warning: ‘MD4_Update’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 356 | MD4_Update(&md4, pw, 2*len); | ^~~~~~~~~~ /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); | ^~~~~~~~~~ ne_ntlm.c:357:5: warning: ‘MD4_Final’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 357 | MD4_Final(ntbuffer, &md4); | ^~~~~~~~~ /usr/include/openssl/md4.h:52:27: note: declared here 52 | OSSL_DEPRECATEDIN_3_0 int MD4_Final(unsigned char *md, MD4_CTX *c); | ^~~~~~~~~ libtool: warning: remember to run 'libtool --finish /usr/lib'