Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试用 java 实现 RSA 算法。 我了解数学算法,我不了解如何将字符串消息转换为大整数密文。
我相信典型的方法是将字符串转换为字节数组(为什么 byteArray 的长度为 22 而不是 20?),然后将字节数组转换为您想要的数字类型(在 java 中将字节数组转换为整数反之亦然),即 int,long,double,...