php rsa 解密 routines:rsa_ossl_private_decrypt:padding check failed asn1 encoding routines:asn1_d2i_ex_primitive:nested asn1 error
坑 大坑
字符串多的时候 需要分割去加减密 网上基本上帖子都是 117 128 然后就提示标题报错了
解决方法
$key_len = openssl_pkey_get_details($pri_key)['bits'];
$part_len = $key_len / 8;
计算出实际分割的长度
原文地址:https://blog.csdn.net/qq_41921511/article/details/83864378