php/symfony执行 lexik:jwt:generate-keypair --overwrite命令生成密钥时报错Undefined constant 'OPENSSL_KEYTYPE_RSA' 报错: 原因:找不到openssl扩展(通过php -m命令可以看到,没有openssl扩展)但实际上ext目录有php_openssl.dll 解决办法:检查php.ini里的配置修改extension_dir配置项为ext目录,问题解决。
Pubkeys used (if applicable): apparently it uses RSA server key, it didn't get to client key Additional context Downgrading OpenSSL to 1.1.1c resolves the problem. I get the same issue - using instructions fromhttps://bugs.gentoo.org/694984to block 4x rsa2 algorithms allows it to workHos...