cscrypt/md5.c: In function ‘__md5_crypt’:
cscrypt/md5.c:320:2: warning: ‘MD5_Init’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
MD5_Init(&ctx);
^~~~~~~~
In file included from cscrypt/md5.h:5:0,
from cscrypt/md5.c:24:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/md5.h:49:27: note: declared here
OSSL_DEPRECATEDIN_3_0 int MD5_Init(MD5_CTX *c);
^~~~~~~~
cscrypt/md5.c:324:2: warning: ‘MD5_Update’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
MD5_Update(&ctx, (const unsigned char *)pw, pw_len);
^~~~~~~~~~
In file included from cscrypt/md5.h:5:0,
from cscrypt/md5.c:24:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/md5.h:50:27: note: declared here
OSSL_DEPRECATEDIN_3_0 int MD5_Update(MD5_CTX *c, const void *data, size_t len);
^~~~~~~~~~
cscrypt/md5.c:327:2: warning: ‘MD5_Update’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
MD5_Update(&ctx, (const unsigned char *)__md5__magic, __md5__magic_len);
^~~~~~~~~~
In file included from cscrypt/md5.h:5:0,
from cscrypt/md5.c:24:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/md5.h:50:27: note: declared here
OSSL_DEPRECATEDIN_3_0 int MD5_Update(MD5_CTX *c, const void *data, size_t len);
^~~~~~~~~~
cscrypt/md5.c:330:2: warning: ‘MD5_Update’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
MD5_Update(&ctx, (const unsigned char *)sp, sl);
^~~~~~~~~~
In file included from cscrypt/md5.h:5:0,
from cscrypt/md5.c:24:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/md5.h:50:27: note: declared here
OSSL_DEPRECATEDIN_3_0 int MD5_Update(MD5_CTX *c, const void *data, size_t len);
^~~~~~~~~~
cscrypt/md5.c:333:2: warning: ‘MD5_Init’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
MD5_Init(&ctx1);
^~~~~~~~
In file included from cscrypt/md5.h:5:0,
from cscrypt/md5.c:24:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/md5.h:49:27: note: declared here
OSSL_DEPRECATEDIN_3_0 int MD5_Init(MD5_CTX *c);
^~~~~~~~
cscrypt/md5.c:334:2: warning: ‘MD5_Update’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
MD5_Update(&ctx1, (const unsigned char *)pw, pw_len);
^~~~~~~~~~
In file included from cscrypt/md5.h:5:0,
from cscrypt/md5.c:24:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/md5.h:50:27: note: declared here
OSSL_DEPRECATEDIN_3_0 int MD5_Update(MD5_CTX *c, const void *data, size_t len);
^~~~~~~~~~
cscrypt/md5.c:335:2: warning: ‘MD5_Update’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
MD5_Update(&ctx1, (const unsigned char *)sp, sl);
^~~~~~~~~~
In file included from cscrypt/md5.h:5:0,
from cscrypt/md5.c:24:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/md5.h:50:27: note: declared here
OSSL_DEPRECATEDIN_3_0 int MD5_Update(MD5_CTX *c, const void *data, size_t len);
^~~~~~~~~~
cscrypt/md5.c:336:2: warning: ‘MD5_Update’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
MD5_Update(&ctx1, (const unsigned char *)pw, pw_len);
^~~~~~~~~~
In file included from cscrypt/md5.h:5:0,
from cscrypt/md5.c:24:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/md5.h:50:27: note: declared here
OSSL_DEPRECATEDIN_3_0 int MD5_Update(MD5_CTX *c, const void *data, size_t len);
^~~~~~~~~~
cscrypt/md5.c:337:2: warning: ‘MD5_Final’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
MD5_Final(final, &ctx1);
^~~~~~~~~
In file included from cscrypt/md5.h:5:0,
from cscrypt/md5.c:24:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/md5.h:51:27: note: declared here
OSSL_DEPRECATEDIN_3_0 int MD5_Final(unsigned char *md, MD5_CTX *c);
^~~~~~~~~
cscrypt/md5.c:339:3: warning: ‘MD5_Update’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
{ MD5_Update(&ctx, (const unsigned char *)final, pl > 16 ? 16 : pl); }
^
In file included from cscrypt/md5.h:5:0,
from cscrypt/md5.c:24:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/md5.h:50:27: note: declared here
OSSL_DEPRECATEDIN_3_0 int MD5_Update(MD5_CTX *c, const void *data, size_t len);
^~~~~~~~~~
cscrypt/md5.c:347:3: warning: ‘MD5_Update’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
MD5_Update(&ctx, ((i & 1) ? final : (const unsigned char *) pw), 1);
^~~~~~~~~~
In file included from cscrypt/md5.h:5:0,
from cscrypt/md5.c:24:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/md5.h:50:27: note: declared here
OSSL_DEPRECATEDIN_3_0 int MD5_Update(MD5_CTX *c, const void *data, size_t len);
^~~~~~~~~~
cscrypt/md5.c:355:2: warning: ‘MD5_Final’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
MD5_Final(final, &ctx);
^~~~~~~~~
In file included from cscrypt/md5.h:5:0,
from cscrypt/md5.c:24:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/md5.h:51:27: note: declared here
OSSL_DEPRECATEDIN_3_0 int MD5_Final(unsigned char *md, MD5_CTX *c);
^~~~~~~~~
cscrypt/md5.c:364:3: warning: ‘MD5_Init’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
MD5_Init(&ctx1);
^~~~~~~~
In file included from cscrypt/md5.h:5:0,
from cscrypt/md5.c:24:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/md5.h:49:27: note: declared here
OSSL_DEPRECATEDIN_3_0 int MD5_Init(MD5_CTX *c);
^~~~~~~~
cscrypt/md5.c:366:4: warning: ‘MD5_Update’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
{ MD5_Update(&ctx1, (const unsigned char *)pw, pw_len); }
^
In file included from cscrypt/md5.h:5:0,
from cscrypt/md5.c:24:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/md5.h:50:27: note: declared here
OSSL_DEPRECATEDIN_3_0 int MD5_Update(MD5_CTX *c, const void *data, size_t len);
^~~~~~~~~~
cscrypt/md5.c:368:4: warning: ‘MD5_Update’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
{ MD5_Update(&ctx1, (const unsigned char *)final, 16); }
^
In file included from cscrypt/md5.h:5:0,
from cscrypt/md5.c:24:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/md5.h:50:27: note: declared here
OSSL_DEPRECATEDIN_3_0 int MD5_Update(MD5_CTX *c, const void *data, size_t len);
^~~~~~~~~~
cscrypt/md5.c:371:4: warning: ‘MD5_Update’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
{ MD5_Update(&ctx1, (const unsigned char *)sp, sl); }
^
In file included from cscrypt/md5.h:5:0,
from cscrypt/md5.c:24:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/md5.h:50:27: note: declared here
OSSL_DEPRECATEDIN_3_0 int MD5_Update(MD5_CTX *c, const void *data, size_t len);
^~~~~~~~~~
cscrypt/md5.c:374:4: warning: ‘MD5_Update’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
{ MD5_Update(&ctx1, (const unsigned char *)pw, pw_len); }
^
In file included from cscrypt/md5.h:5:0,
from cscrypt/md5.c:24:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/md5.h:50:27: note: declared here
OSSL_DEPRECATEDIN_3_0 int MD5_Update(MD5_CTX *c, const void *data, size_t len);
^~~~~~~~~~
cscrypt/md5.c:377:4: warning: ‘MD5_Update’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
{ MD5_Update(&ctx1, (const unsigned char *)final, 16); }
^
In file included from cscrypt/md5.h:5:0,
from cscrypt/md5.c:24:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/md5.h:50:27: note: declared here
OSSL_DEPRECATEDIN_3_0 int MD5_Update(MD5_CTX *c, const void *data, size_t len);
^~~~~~~~~~
cscrypt/md5.c:379:4: warning: ‘MD5_Update’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
{ MD5_Update(&ctx1, (const unsigned char *)pw, pw_len); }
^
In file included from cscrypt/md5.h:5:0,
from cscrypt/md5.c:24:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/md5.h:50:27: note: declared here
OSSL_DEPRECATEDIN_3_0 int MD5_Update(MD5_CTX *c, const void *data, size_t len);
^~~~~~~~~~
cscrypt/md5.c:380:3: warning: ‘MD5_Final’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
MD5_Final(final, &ctx1);
^~~~~~~~~
In file included from cscrypt/md5.h:5:0,
from cscrypt/md5.c:24:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/md5.h:51:27: note: declared here
OSSL_DEPRECATEDIN_3_0 int MD5_Final(unsigned char *md, MD5_CTX *c);
^~~~~~~~~
CC csctapi/ifd_stinger.c
cscrypt/mdc2.c: In function ‘mdc2_body’:
cscrypt/mdc2.c:636:3: warning: ‘DES_set_odd_parity’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
DES_set_odd_parity(&c->h);
^~~~~~~~~~~~~~~~~~
In file included from cscrypt/mdc2.h:63:0,
from cscrypt/mdc2.c:3:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/des.h:176:28: note: declared here
OSSL_DEPRECATEDIN_3_0 void DES_set_odd_parity(DES_cblock *key);
^~~~~~~~~~~~~~~~~~
cscrypt/mdc2.c:637:3: warning: ‘DES_set_key_unchecked’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
DES_set_key_unchecked(&c->h, &k);
^~~~~~~~~~~~~~~~~~~~~
In file included from cscrypt/mdc2.h:63:0,
from cscrypt/mdc2.c:3:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/des.h:192:6: note: declared here
void DES_set_key_unchecked(const_DES_cblock *key, DES_key_schedule *schedule);
^~~~~~~~~~~~~~~~~~~~~
cscrypt/mdc2.c:638:3: warning: ‘DES_encrypt1’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
DES_encrypt1(d, &k, 1);
^~~~~~~~~~~~
In file included from cscrypt/mdc2.h:63:0,
from cscrypt/mdc2.c:3:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/des.h:121:6: note: declared here
void DES_encrypt1(DES_LONG *data, DES_key_schedule *ks, int enc);
^~~~~~~~~~~~
cscrypt/mdc2.c:640:3: warning: ‘DES_set_odd_parity’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
DES_set_odd_parity(&c->hh);
^~~~~~~~~~~~~~~~~~
In file included from cscrypt/mdc2.h:63:0,
from cscrypt/mdc2.c:3:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/des.h:176:28: note: declared here
OSSL_DEPRECATEDIN_3_0 void DES_set_odd_parity(DES_cblock *key);
^~~~~~~~~~~~~~~~~~
cscrypt/mdc2.c:641:3: warning: ‘DES_set_key_unchecked’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
DES_set_key_unchecked(&c->hh, &k);
^~~~~~~~~~~~~~~~~~~~~
In file included from cscrypt/mdc2.h:63:0,
from cscrypt/mdc2.c:3:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/des.h:192:6: note: declared here
void DES_set_key_unchecked(const_DES_cblock *key, DES_key_schedule *schedule);
^~~~~~~~~~~~~~~~~~~~~
cscrypt/mdc2.c:642:3: warning: ‘DES_encrypt1’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
DES_encrypt1(dd, &k, 1);
^~~~~~~~~~~~
In file included from cscrypt/mdc2.h:63:0,
from cscrypt/mdc2.c:3:
/home/s3/support/toolchains/armv7_generic/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/des.h:121:6: note: declared here
void DES_encrypt1(DES_LONG *data, DES_key_schedule *ks, int enc);
^~~~~~~~~~~~