JAVA
RSA Data must start with zero问题解决方法
RSA工具使用公钥加密之后生成byte[],直接解密是没有问题的,但将byte[]通过Base64.encode(byte[])之后得到的字符串重新getBytes()去解密是会出现RSADatamuststartwithzero的问题的。解决方法:/***将加密后的字节数组转换为对象**@MethodName:bytesToString*@Description:*@paramencrytpBy