>>> peervpn: Building testing/peervpn 0.044-r5 (using abuild 3.9.0-r3) started Thu, 04 Aug 2022 05:44:49 +0000 >>> peervpn: Checking sanity of /home/buildozer/aports/testing/peervpn/APKBUILD... >>> peervpn: Analyzing dependencies... >>> peervpn: Installing for build: build-base openssl-dev>3 zlib-dev linux-headers (1/4) Installing openssl-dev (3.0.5-r1) (2/4) Installing zlib-dev (1.2.12-r1) (3/4) Installing linux-headers (5.16.7-r1) (4/4) Installing .makedepends-peervpn (20220804.054450) OK: 762 MiB in 107 packages >>> peervpn: Cleaning up srcdir >>> peervpn: Cleaning up pkgdir >>> peervpn: Fetching https://distfiles.alpinelinux.org/distfiles/edge/peervpn-0-044.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 82107 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 82107 100 82107 0 0 122k 0 --:--:-- --:--:-- --:--:-- 122k >>> peervpn: Fetching https://distfiles.alpinelinux.org/distfiles/edge/peervpn-0-044.tar.gz >>> peervpn: Checking sha512sums... peervpn-0-044.tar.gz: OK peervpn.initd: OK openssl-1.1.patch: OK >>> peervpn: Unpacking /var/cache/distfiles/edge/peervpn-0-044.tar.gz... >>> peervpn: openssl-1.1.patch patching file libp2psec/crypto.c patching file libp2psec/dh.c gcc -Os -O2 -Os -c -o peervpn.o peervpn.c In file included from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/crypto.c: In function 'cryptoSetKeys': libp2psec/crypto.c:187:9: warning: 'HMAC_CTX_new' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 187 | HMAC_CTX *hmac_ctx = HMAC_CTX_new(); | ^~~~~~~~ In file included from libp2psec/crypto.c:26, from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: /usr/include/openssl/hmac.h:33:33: note: declared here 33 | OSSL_DEPRECATEDIN_3_0 HMAC_CTX *HMAC_CTX_new(void); | ^~~~~~~~~~~~ In file included from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/crypto.c:196:9: warning: 'HMAC_Init_ex' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 196 | HMAC_Init_ex(hmac_ctx, nonce_buf, nonce_len, keygen_md, NULL); | ^~~~~~~~~~~~ In file included from libp2psec/crypto.c:26, from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: /usr/include/openssl/hmac.h:43:27: note: declared here 43 | OSSL_DEPRECATEDIN_3_0 int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len, | ^~~~~~~~~~~~ In file included from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/crypto.c:197:9: warning: 'HMAC_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 197 | HMAC_Update(hmac_ctx, secret_buf, secret_len); | ^~~~~~~~~~~ In file included from libp2psec/crypto.c:26, from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: /usr/include/openssl/hmac.h:45:27: note: declared here 45 | OSSL_DEPRECATEDIN_3_0 int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, | ^~~~~~~~~~~ In file included from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/crypto.c:198:9: warning: 'HMAC_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 198 | HMAC_Final(hmac_ctx, seed_key, (unsigned int *)&seed_key_len); | ^~~~~~~~~~ In file included from libp2psec/crypto.c:26, from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: /usr/include/openssl/hmac.h:47:27: note: declared here 47 | OSSL_DEPRECATEDIN_3_0 int HMAC_Final(HMAC_CTX *ctx, unsigned char *md, | ^~~~~~~~~~ In file included from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/crypto.c:207:9: warning: 'HMAC_Init_ex' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 207 | HMAC_Init_ex(hmac_ctx, seed_key, seed_key_len, keygen_md, NULL); | ^~~~~~~~~~~~ In file included from libp2psec/crypto.c:26, from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: /usr/include/openssl/hmac.h:43:27: note: declared here 43 | OSSL_DEPRECATEDIN_3_0 int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len, | ^~~~~~~~~~~~ In file included from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/crypto.c:208:9: warning: 'HMAC_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 208 | HMAC_Update(hmac_ctx, nonce_buf, nonce_len); | ^~~~~~~~~~~ In file included from libp2psec/crypto.c:26, from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: /usr/include/openssl/hmac.h:45:27: note: declared here 45 | OSSL_DEPRECATEDIN_3_0 int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, | ^~~~~~~~~~~ In file included from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/crypto.c:209:9: warning: 'HMAC_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 209 | HMAC_Final(hmac_ctx, cur_key, (unsigned int *)&cur_key_len); | ^~~~~~~~~~ In file included from libp2psec/crypto.c:26, from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: /usr/include/openssl/hmac.h:47:27: note: declared here 47 | OSSL_DEPRECATEDIN_3_0 int HMAC_Final(HMAC_CTX *ctx, unsigned char *md, | ^~~~~~~~~~ In file included from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/crypto.c:224:17: warning: 'HMAC_Init_ex' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 224 | HMAC_Init_ex(hmac_ctx, NULL, -1, NULL, NULL); | ^~~~~~~~~~~~ In file included from libp2psec/crypto.c:26, from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: /usr/include/openssl/hmac.h:43:27: note: declared here 43 | OSSL_DEPRECATEDIN_3_0 int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len, | ^~~~~~~~~~~~ In file included from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/crypto.c:225:17: warning: 'HMAC_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 225 | HMAC_Update(hmac_ctx, cur_key, cur_key_len); | ^~~~~~~~~~~ In file included from libp2psec/crypto.c:26, from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: /usr/include/openssl/hmac.h:45:27: note: declared here 45 | OSSL_DEPRECATEDIN_3_0 int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, | ^~~~~~~~~~~ In file included from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/crypto.c:226:17: warning: 'HMAC_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 226 | HMAC_Update(hmac_ctx, nonce_buf, nonce_len); | ^~~~~~~~~~~ In file included from libp2psec/crypto.c:26, from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: /usr/include/openssl/hmac.h:45:27: note: declared here 45 | OSSL_DEPRECATEDIN_3_0 int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, | ^~~~~~~~~~~ In file included from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/crypto.c:227:17: warning: 'HMAC_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 227 | HMAC_Update(hmac_ctx, in, 2); | ^~~~~~~~~~~ In file included from libp2psec/crypto.c:26, from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: /usr/include/openssl/hmac.h:45:27: note: declared here 45 | OSSL_DEPRECATEDIN_3_0 int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, | ^~~~~~~~~~~ In file included from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/crypto.c:228:17: warning: 'HMAC_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 228 | HMAC_Final(hmac_ctx, cur_key, (unsigned int *)&cur_key_len); | ^~~~~~~~~~ In file included from libp2psec/crypto.c:26, from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: /usr/include/openssl/hmac.h:47:27: note: declared here 47 | OSSL_DEPRECATEDIN_3_0 int HMAC_Final(HMAC_CTX *ctx, unsigned char *md, | ^~~~~~~~~~ In file included from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/crypto.c:247:33: warning: 'HMAC_Init_ex' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 247 | HMAC_Init_ex(ctxs[k].hmac_ctx, cur_key, cur_key_len, out_md, NULL); | ^~~~~~~~~~~~ In file included from libp2psec/crypto.c:26, from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: /usr/include/openssl/hmac.h:43:27: note: declared here 43 | OSSL_DEPRECATEDIN_3_0 int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len, | ^~~~~~~~~~~~ In file included from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/crypto.c:266:9: warning: 'HMAC_CTX_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 266 | HMAC_CTX_free(hmac_ctx); | ^~~~~~~~~~~~~ In file included from libp2psec/crypto.c:26, from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: /usr/include/openssl/hmac.h:35:28: note: declared here 35 | OSSL_DEPRECATEDIN_3_0 void HMAC_CTX_free(HMAC_CTX *ctx); | ^~~~~~~~~~~~~ In file included from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/crypto.c: In function 'cryptoDestroy': libp2psec/crypto.c:292:17: warning: 'HMAC_CTX_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 292 | HMAC_CTX_free(ctxs[i].hmac_ctx); | ^~~~~~~~~~~~~ In file included from libp2psec/crypto.c:26, from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: /usr/include/openssl/hmac.h:35:28: note: declared here 35 | OSSL_DEPRECATEDIN_3_0 void HMAC_CTX_free(HMAC_CTX *ctx); | ^~~~~~~~~~~~~ In file included from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/crypto.c: In function 'cryptoCreate': libp2psec/crypto.c:311:17: warning: 'HMAC_CTX_new' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 311 | ctxs[i].hmac_ctx = HMAC_CTX_new(); | ^~~~ In file included from libp2psec/crypto.c:26, from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: /usr/include/openssl/hmac.h:33:33: note: declared here 33 | OSSL_DEPRECATEDIN_3_0 HMAC_CTX *HMAC_CTX_new(void); | ^~~~~~~~~~~~ In file included from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/crypto.c: In function 'cryptoHMAC': libp2psec/crypto.c:333:9: warning: 'HMAC_Init_ex' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 333 | HMAC_Init_ex(ctx->hmac_ctx, NULL, -1, NULL, NULL); | ^~~~~~~~~~~~ In file included from libp2psec/crypto.c:26, from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: /usr/include/openssl/hmac.h:43:27: note: declared here 43 | OSSL_DEPRECATEDIN_3_0 int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len, | ^~~~~~~~~~~~ In file included from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/crypto.c:334:9: warning: 'HMAC_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 334 | HMAC_Update(ctx->hmac_ctx, in_buf, in_len); | ^~~~~~~~~~~ In file included from libp2psec/crypto.c:26, from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: /usr/include/openssl/hmac.h:45:27: note: declared here 45 | OSSL_DEPRECATEDIN_3_0 int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, | ^~~~~~~~~~~ In file included from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/crypto.c:335:9: warning: 'HMAC_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 335 | HMAC_Final(ctx->hmac_ctx, hmac, (unsigned int *)&len); | ^~~~~~~~~~ In file included from libp2psec/crypto.c:26, from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: /usr/include/openssl/hmac.h:47:27: note: declared here 47 | OSSL_DEPRECATEDIN_3_0 int HMAC_Final(HMAC_CTX *ctx, unsigned char *md, | ^~~~~~~~~~ In file included from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/crypto.c: In function 'cryptoSetSessionKeys': libp2psec/crypto.c:373:9: warning: 'HMAC_Init_ex' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 373 | HMAC_Init_ex(session_ctx->hmac_ctx, hmac_key, key_size, st_md.md, NULL); | ^~~~~~~~~~~~ In file included from libp2psec/crypto.c:26, from libp2psec/rsa.c:24, from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: /usr/include/openssl/hmac.h:43:27: note: declared here 43 | OSSL_DEPRECATEDIN_3_0 int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len, | ^~~~~~~~~~~~ In file included from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/rsa.c: In function 'rsaGenerate': libp2psec/rsa.c:112:17: warning: 'RSA_new' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 112 | rsakey = RSA_new(); | ^~~~~~ In file included from /usr/include/openssl/engine.h:25, from peervpn.c:22: /usr/include/openssl/rsa.h:201:28: note: declared here 201 | OSSL_DEPRECATEDIN_3_0 RSA *RSA_new(void); | ^~~~~~~ In file included from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/rsa.c:115:33: warning: 'RSA_generate_key_ex' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 115 | if(RSA_generate_key_ex(rsakey, key_size, rsa->bn, NULL)) { | ^~ In file included from /usr/include/openssl/engine.h:25, from peervpn.c:22: /usr/include/openssl/rsa.h:260:27: note: declared here 260 | OSSL_DEPRECATEDIN_3_0 int RSA_generate_key_ex(RSA *rsa, int bits, BIGNUM *e, | ^~~~~~~~~~~~~~~~~~~ In file included from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/rsa.c:116:41: warning: 'RSA_check_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 116 | if(RSA_check_key(rsakey) == 1) { | ^~ In file included from /usr/include/openssl/engine.h:25, from peervpn.c:22: /usr/include/openssl/rsa.h:278:27: note: declared here 278 | OSSL_DEPRECATEDIN_3_0 int RSA_check_key(const RSA *); | ^~~~~~~~~~~~~ In file included from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/rsa.c:117:49: warning: 'EVP_PKEY_assign' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 117 | if(EVP_PKEY_assign_RSA(rsa->key, rsakey)) { | ^~ In file included from /usr/include/openssl/rand.h:23, from /usr/include/openssl/engine.h:29, from peervpn.c:22: /usr/include/openssl/evp.h:1328:5: note: declared here 1328 | int EVP_PKEY_assign(EVP_PKEY *pkey, int type, void *key); | ^~~~~~~~~~~~~~~ In file included from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/rsa.c:126:25: warning: 'RSA_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 126 | RSA_free(rsakey); | ^~~~~~~~ In file included from /usr/include/openssl/engine.h:25, from peervpn.c:22: /usr/include/openssl/rsa.h:293:28: note: declared here 293 | OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r); | ^~~~~~~~ In file included from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/rsa.c: In function 'rsaLoadPEM': libp2psec/rsa.c:166:25: warning: 'RSA_new' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 166 | rsakey = RSA_new(); | ^~~~~~ In file included from /usr/include/openssl/engine.h:25, from peervpn.c:22: /usr/include/openssl/rsa.h:201:28: note: declared here 201 | OSSL_DEPRECATEDIN_3_0 RSA *RSA_new(void); | ^~~~~~~ In file included from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/rsa.c:168:33: warning: 'PEM_read_bio_RSA_PUBKEY' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 168 | if(PEM_read_bio_RSA_PUBKEY(biopub, &rsakey, NULL, NULL) != NULL) { | ^~ In file included from /usr/include/openssl/ui.h:30, from /usr/include/openssl/engine.h:30, from peervpn.c:22: /usr/include/openssl/pem.h:449:1: note: declared here 449 | DECLARE_PEM_rw_attr(OSSL_DEPRECATEDIN_3_0, RSA_PUBKEY, RSA) | ^~~~~~~~~~~~~~~~~~~ In file included from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/rsa.c:169:41: warning: 'EVP_PKEY_assign' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 169 | EVP_PKEY_assign_RSA(rsa->key, rsakey); | ^~~~~~~~~~~~~~~~~~~ In file included from /usr/include/openssl/rand.h:23, from /usr/include/openssl/engine.h:29, from peervpn.c:22: /usr/include/openssl/evp.h:1328:5: note: declared here 1328 | int EVP_PKEY_assign(EVP_PKEY *pkey, int type, void *key); | ^~~~~~~~~~~~~~~ In file included from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/rsa.c:175:41: warning: 'RSA_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 175 | RSA_free(rsakey); | ^~~~~~~~ In file included from /usr/include/openssl/engine.h:25, from peervpn.c:22: /usr/include/openssl/rsa.h:293:28: note: declared here 293 | OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r); | ^~~~~~~~ In file included from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/rsa.c: In function 'rsaLoadPrivatePEM': libp2psec/rsa.c:198:25: warning: 'RSA_new' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 198 | rsakey = RSA_new(); | ^~~~~~ In file included from /usr/include/openssl/engine.h:25, from peervpn.c:22: /usr/include/openssl/rsa.h:201:28: note: declared here 201 | OSSL_DEPRECATEDIN_3_0 RSA *RSA_new(void); | ^~~~~~~ In file included from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/rsa.c:200:33: warning: 'PEM_read_bio_RSAPrivateKey' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 200 | if(PEM_read_bio_RSAPrivateKey(biopriv, &rsakey, NULL, NULL) != NULL) { | ^~ In file included from /usr/include/openssl/ui.h:30, from /usr/include/openssl/engine.h:30, from peervpn.c:22: /usr/include/openssl/pem.h:447:1: note: declared here 447 | DECLARE_PEM_rw_cb_attr(OSSL_DEPRECATEDIN_3_0, RSAPrivateKey, RSA) | ^~~~~~~~~~~~~~~~~~~~~~ In file included from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/rsa.c:201:41: warning: 'RSA_check_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 201 | if(RSA_check_key(rsakey) == 1) { | ^~ In file included from /usr/include/openssl/engine.h:25, from peervpn.c:22: /usr/include/openssl/rsa.h:278:27: note: declared here 278 | OSSL_DEPRECATEDIN_3_0 int RSA_check_key(const RSA *); | ^~~~~~~~~~~~~ In file included from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/rsa.c:202:49: warning: 'EVP_PKEY_assign' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 202 | EVP_PKEY_assign_RSA(rsa->key, rsakey); | ^~~~~~~~~~~~~~~~~~~ In file included from /usr/include/openssl/rand.h:23, from /usr/include/openssl/engine.h:29, from peervpn.c:22: /usr/include/openssl/evp.h:1328:5: note: declared here 1328 | int EVP_PKEY_assign(EVP_PKEY *pkey, int type, void *key); | ^~~~~~~~~~~~~~~ In file included from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/rsa.c:208:49: warning: 'RSA_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 208 | RSA_free(rsakey); | ^~~~~~~~ In file included from /usr/include/openssl/engine.h:25, from peervpn.c:22: /usr/include/openssl/rsa.h:293:28: note: declared here 293 | OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r); | ^~~~~~~~ In file included from libp2psec/nodeid.c:24, from libp2psec/nodedb.c:26, from libp2psec/peermgt.c:24, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/rsa.c:212:41: warning: 'RSA_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 212 | RSA_free(rsakey); | ^~~~~~~~ In file included from /usr/include/openssl/engine.h:25, from peervpn.c:22: /usr/include/openssl/rsa.h:293:28: note: declared here 293 | OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r); | ^~~~~~~~ In file included from libp2psec/auth.c:29, from libp2psec/authmgt.c:24, from libp2psec/peermgt.c:25, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/dh.c: In function 'dhLoadParams': libp2psec/dh.c:53:17: warning: 'PEM_read_bio_DHparams' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 53 | if(PEM_read_bio_DHparams(biodh, &dhptr, NULL, NULL) != NULL) { | ^~ In file included from /usr/include/openssl/ui.h:30, from /usr/include/openssl/engine.h:30, from peervpn.c:22: /usr/include/openssl/pem.h:469:1: note: declared here 469 | DECLARE_PEM_rw_attr(OSSL_DEPRECATEDIN_3_0, DHparams, DH) | ^~~~~~~~~~~~~~~~~~~ In file included from libp2psec/auth.c:29, from libp2psec/authmgt.c:24, from libp2psec/peermgt.c:25, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/dh.c:54:25: warning: 'DH_check' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 54 | ret = DH_check(dhstate->dh, &err); | ^~~ In file included from /usr/include/openssl/dsa.h:51, from /usr/include/openssl/engine.h:26, from peervpn.c:22: /usr/include/openssl/dh.h:220:27: note: declared here 220 | OSSL_DEPRECATEDIN_3_0 int DH_check(const DH *dh, int *codes); | ^~~~~~~~ In file included from libp2psec/auth.c:29, from libp2psec/authmgt.c:24, from libp2psec/peermgt.c:25, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/dh.c: In function 'dhGenKey': libp2psec/dh.c:90:9: warning: 'DH_generate_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 90 | if(DH_generate_key(dhstate->dh)) { | ^~ In file included from /usr/include/openssl/dsa.h:51, from /usr/include/openssl/engine.h:26, from peervpn.c:22: /usr/include/openssl/dh.h:223:27: note: declared here 223 | OSSL_DEPRECATEDIN_3_0 int DH_generate_key(DH *dh); | ^~~~~~~~~~~~~~~ In file included from libp2psec/auth.c:29, from libp2psec/authmgt.c:24, from libp2psec/peermgt.c:25, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/dh.c:94:17: warning: 'DH_get0_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 94 | DH_get0_key(dhstate->dh, &bn, NULL); | ^~~~~~~~~~~ In file included from /usr/include/openssl/dsa.h:51, from /usr/include/openssl/engine.h:26, from peervpn.c:22: /usr/include/openssl/dh.h:256:28: note: declared here 256 | OSSL_DEPRECATEDIN_3_0 void DH_get0_key(const DH *dh, const BIGNUM **pub_key, | ^~~~~~~~~~~ In file included from libp2psec/auth.c:29, from libp2psec/authmgt.c:24, from libp2psec/peermgt.c:25, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/dh.c: In function 'dhCreate': libp2psec/dh.c:118:17: warning: 'DH_new' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 118 | dhstate->dh = DH_new(); | ^~~~~~~ In file included from /usr/include/openssl/dsa.h:51, from /usr/include/openssl/engine.h:26, from peervpn.c:22: /usr/include/openssl/dh.h:199:27: note: declared here 199 | OSSL_DEPRECATEDIN_3_0 DH *DH_new(void); | ^~~~~~ In file included from libp2psec/auth.c:29, from libp2psec/authmgt.c:24, from libp2psec/peermgt.c:25, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/dh.c:125:25: warning: 'DH_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 125 | DH_free(dhstate->dh); | ^~~~~~~ In file included from /usr/include/openssl/dsa.h:51, from /usr/include/openssl/engine.h:26, from peervpn.c:22: /usr/include/openssl/dh.h:200:28: note: declared here 200 | OSSL_DEPRECATEDIN_3_0 void DH_free(DH *dh); | ^~~~~~~ In file included from libp2psec/auth.c:29, from libp2psec/authmgt.c:24, from libp2psec/peermgt.c:25, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/dh.c: In function 'dhDestroy': libp2psec/dh.c:135:9: warning: 'DH_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 135 | DH_free(dhstate->dh); | ^~~~~~~ In file included from /usr/include/openssl/dsa.h:51, from /usr/include/openssl/engine.h:26, from peervpn.c:22: /usr/include/openssl/dh.h:200:28: note: declared here 200 | OSSL_DEPRECATEDIN_3_0 void DH_free(DH *dh); | ^~~~~~~ In file included from libp2psec/auth.c:29, from libp2psec/authmgt.c:24, from libp2psec/peermgt.c:25, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/dh.c: In function 'dhGenCryptoKeys': libp2psec/dh.c:168:9: warning: 'DH_size' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 168 | int maxsize = DH_size(dh); | ^~~ In file included from /usr/include/openssl/dsa.h:51, from /usr/include/openssl/engine.h:26, from peervpn.c:22: /usr/include/openssl/dh.h:203:27: note: declared here 203 | OSSL_DEPRECATEDIN_3_0 int DH_size(const DH *dh); | ^~~~~~~ In file included from libp2psec/auth.c:29, from libp2psec/authmgt.c:24, from libp2psec/peermgt.c:25, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/dh.c:175:9: warning: 'DH_get0_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 175 | DH_get0_key(dh, &bndh, NULL); | ^~~~~~~~~~~ In file included from /usr/include/openssl/dsa.h:51, from /usr/include/openssl/engine.h:26, from peervpn.c:22: /usr/include/openssl/dh.h:256:28: note: declared here 256 | OSSL_DEPRECATEDIN_3_0 void DH_get0_key(const DH *dh, const BIGNUM **pub_key, | ^~~~~~~~~~~ In file included from libp2psec/auth.c:29, from libp2psec/authmgt.c:24, from libp2psec/peermgt.c:25, from libp2psec/p2psec.c:25, from peervpn.c:28: libp2psec/dh.c:178:17: warning: 'DH_compute_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 178 | size = DH_compute_key(secret, bn, dh); | ^~~~ In file included from /usr/include/openssl/dsa.h:51, from /usr/include/openssl/engine.h:26, from peervpn.c:22: /usr/include/openssl/dh.h:224:27: note: declared here 224 | OSSL_DEPRECATEDIN_3_0 int DH_compute_key(unsigned char *key, | ^~~~~~~~~~~~~~ In file included from peervpn.c:37: init.ic: In function 'loadengine': init.ic:32:9: warning: 'ENGINE_by_id' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 32 | ENGINE *e = ENGINE_by_id(engine_name); | ^~~~~~ In file included from peervpn.c:22: /usr/include/openssl/engine.h:336:31: note: declared here 336 | OSSL_DEPRECATEDIN_3_0 ENGINE *ENGINE_by_id(const char *id); | ^~~~~~~~~~~~ In file included from peervpn.c:37: init.ic:37:17: warning: 'ENGINE_ctrl_cmd_string' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 37 | if(!ENGINE_ctrl_cmd_string(e, pre_cmds[0], pre_cmds[1], 0)) { | ^~ In file included from peervpn.c:22: /usr/include/openssl/engine.h:479:5: note: declared here 479 | int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg, | ^~~~~~~~~~~~~~~~~~~~~~ In file included from peervpn.c:37: init.ic:38:25: warning: 'ENGINE_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 38 | ENGINE_free(e); | ^~~~~~~~~~~ In file included from peervpn.c:22: /usr/include/openssl/engine.h:493:27: note: declared here 493 | OSSL_DEPRECATEDIN_3_0 int ENGINE_free(ENGINE *e); | ^~~~~~~~~~~ In file included from peervpn.c:37: init.ic:43:9: warning: 'ENGINE_init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 43 | if(!ENGINE_init(e)) { | ^~ In file included from peervpn.c:22: /usr/include/openssl/engine.h:620:27: note: declared here 620 | OSSL_DEPRECATEDIN_3_0 int ENGINE_init(ENGINE *e); | ^~~~~~~~~~~ In file included from peervpn.c:37: init.ic:44:17: warning: 'ENGINE_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 44 | ENGINE_free(e); | ^~~~~~~~~~~ In file included from peervpn.c:22: /usr/include/openssl/engine.h:493:27: note: declared here 493 | OSSL_DEPRECATEDIN_3_0 int ENGINE_free(ENGINE *e); | ^~~~~~~~~~~ In file included from peervpn.c:37: init.ic:47:9: warning: 'ENGINE_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 47 | ENGINE_free(e); | ^~~~~~~~~~~ In file included from peervpn.c:22: /usr/include/openssl/engine.h:493:27: note: declared here 493 | OSSL_DEPRECATEDIN_3_0 int ENGINE_free(ENGINE *e); | ^~~~~~~~~~~ In file included from peervpn.c:37: init.ic:49:17: warning: 'ENGINE_ctrl_cmd_string' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 49 | if(!ENGINE_ctrl_cmd_string(e, post_cmds[0], post_cmds[1], 0)) { | ^~ In file included from peervpn.c:22: /usr/include/openssl/engine.h:479:5: note: declared here 479 | int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg, | ^~~~~~~~~~~~~~~~~~~~~~ In file included from peervpn.c:37: init.ic:50:25: warning: 'ENGINE_finish' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 50 | ENGINE_finish(e); | ^~~~~~~~~~~~~ In file included from peervpn.c:22: /usr/include/openssl/engine.h:628:27: note: declared here 628 | OSSL_DEPRECATEDIN_3_0 int ENGINE_finish(ENGINE *e); | ^~~~~~~~~~~~~ In file included from peervpn.c:37: init.ic:55:9: warning: 'ENGINE_set_default' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 55 | ENGINE_set_default(e, ENGINE_METHOD_ALL & ~ENGINE_METHOD_RAND); | ^~~~~~~~~~~~~~~~~~ In file included from peervpn.c:22: /usr/include/openssl/engine.h:708:27: note: declared here 708 | OSSL_DEPRECATEDIN_3_0 int ENGINE_set_default(ENGINE *e, unsigned int flags); | ^~~~~~~~~~~~~~~~~~ In file included from peervpn.c:37: init.ic: In function 'init': init.ic:202:9: warning: 'ENGINE_load_builtin_engines' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 202 | ENGINE_load_builtin_engines(); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from peervpn.c:22: /usr/include/openssl/engine.h:358:28: note: declared here 358 | OSSL_DEPRECATEDIN_3_0 void ENGINE_load_builtin_engines(void); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from peervpn.c:37: init.ic:203:9: warning: 'ENGINE_register_all_complete' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 203 | ENGINE_register_all_complete(); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from peervpn.c:22: /usr/include/openssl/engine.h:415:27: note: declared here 415 | OSSL_DEPRECATEDIN_3_0 int ENGINE_register_all_complete(void); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from peervpn.c:37: init.ic:218:41: warning: 'ENGINE_load_builtin_engines' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 218 | ENGINE_load_builtin_engines(); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from peervpn.c:22: /usr/include/openssl/engine.h:358:28: note: declared here 358 | OSSL_DEPRECATEDIN_3_0 void ENGINE_load_builtin_engines(void); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from peervpn.c:37: init.ic:219:41: warning: 'ENGINE_register_all_complete' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 219 | ENGINE_register_all_complete(); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from peervpn.c:22: /usr/include/openssl/engine.h:415:27: note: declared here 415 | OSSL_DEPRECATEDIN_3_0 int ENGINE_register_all_complete(void); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ gcc -Wl,--as-needed,-O1,--sort-common peervpn.o -lcrypto -lz -o peervpn >>> peervpn: Entering fakeroot... >>> peervpn-openrc*: Running split function openrc... >>> peervpn-openrc*: Preparing subpackage peervpn-openrc... >>> peervpn-openrc*: Running postcheck for peervpn-openrc >>> peervpn*: Running postcheck for peervpn >>> peervpn*: Preparing package peervpn... >>> peervpn*: Stripping binaries >>> peervpn-openrc*: Scanning shared objects >>> peervpn*: Scanning shared objects >>> peervpn-openrc*: Tracing dependencies... >>> peervpn-openrc*: Package size: 16.0 KB >>> peervpn-openrc*: Compressing data... >>> peervpn-openrc*: Create checksum... >>> peervpn-openrc*: Create peervpn-openrc-0.044-r5.apk >>> peervpn*: Tracing dependencies... so:libc.musl-aarch64.so.1 so:libcrypto.so.3 >>> peervpn*: Package size: 100.0 KB >>> peervpn*: Compressing data... >>> peervpn*: Create checksum... >>> peervpn*: Create peervpn-0.044-r5.apk >>> peervpn: Build complete at Thu, 04 Aug 2022 05:44:54 +0000 elapsed time 0h 0m 5s >>> peervpn: Cleaning up srcdir >>> peervpn: Cleaning up pkgdir >>> peervpn: Uninstalling dependencies... (1/4) Purging .makedepends-peervpn (20220804.054450) (2/4) Purging openssl-dev (3.0.5-r1) (3/4) Purging zlib-dev (1.2.12-r1) (4/4) Purging linux-headers (5.16.7-r1) OK: 752 MiB in 103 packages >>> peervpn: Updating the testing/aarch64 repository index... >>> peervpn: Signing the index...