Replies: 2 comments
-
289 | RSA *rsa, int padding); |
Beta Was this translation helpful? Give feedback.
0 replies
-
#686 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
测试过,de,un系统都不行
rad系也不行
`/www/server/source/php/php74/ext/openssl/openssl.c: In function ‘zif_openssl_public_decrypt’:
/www/server/source/php/php74/ext/openssl/openssl.c:5957:25: warning: ‘RSA_public_decrypt’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
5957 | cryptedlen = RSA_public_decrypt((int)data_len,
| ^~~~~~~~~~
/usr/include/openssl/rsa.h:288:5: note: declared here
288 | int RSA_public_decrypt(int flen, const unsigned char *from, unsigned char *to,
| ^~~~~~~~~~~~~~~~~~
/www/server/source/php/php74/ext/openssl/openssl.c:5960:41: warning: ‘EVP_PKEY_get0_RSA’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
5960 | EVP_PKEY_get0_RSA(pkey),
| ^~~~~~~~~~~~~~~~~
/usr/include/openssl/evp.h:1348:22: note: declared here
1348 | const struct rsa_st *EVP_PKEY_get0_RSA(const EVP_PKEY *pkey);
| ^~~~~~~~~~~~~~~~~
/www/server/source/php/php74/ext/openssl/openssl.c:5960:41: warning: passing argument 4 of ‘RSA_public_decrypt’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
5960 | EVP_PKEY_get0_RSA(pkey),
| ^~~~~~~~~~~~~~~~~~~~~~~
/usr/include/openssl/rsa.h:289:29: note: expected ‘RSA *’ {aka ‘struct rsa_st *’} but argument is of type ‘const struct rsa_st *’
289 | RSA *rsa, int padding);
| ~~~~~^~~
make: *** [Makefile:701: ext/openssl/openssl.lo] Error 1
make: *** Waiting for unfinished jobs....
安装php-7.4.26成功
其实都没有安装成功`
Beta Was this translation helpful? Give feedback.
All reactions