PHP的RSA加密解密类,支持RSA分段解密,可用于解密APP发送的较长的字符串。使用方法:Rsa::privDecrypt($encryptedString);//RSA私钥解密Rsa::privEncrypt($string);//RSA私钥加密Rsa::publicDecrypt($encryptedString);//公钥解密Rsa::partPrivDecrypt($encryptedString);//RSA分段解密