package RSA; import java.math.BigInteger; import java.util.Random; public class RSA { private BigInteger p; private BigInteger q; private BigInteger n; private BigInteger phi; private BigInteger e; private BigInteger d; public RSA(BigInteger p, BigInteger q) { this.p = p; this.q = q; this.n = p.multiply(q); this.phi = p.subtract(BigInteger.ONE).multiply(q.subtract(BigInteger.ONE)); this.e = generateE(phi); this.d = e.modInverse(phi); } public BigInteger encrypt(String message) { byte[] bytes = message.getBytes(); BigInteger m = new BigInteger(bytes); return m.modPow(e, n); } public String decrypt(BigInteger cipher) { BigInteger m = cipher.modPow(d, n); return new String(m.toByteArray()); } private BigInteger generateE(BigInteger phi) { BigInteger e = BigInteger.probablePrime(phi.bitLength(), new Random()); while (!phi.gcd(e).equals(BigInteger.ONE)) { e = BigInteger.probablePrime(phi.bitLength(), new Random()); } return e; } public static void main(String[] args) { BigInteger p = BigInteger.valueOf(17); BigInteger q = BigInteger.valueOf(19); RSA rsa = new RSA(p, q); String message ="12"; System.out.println("Original message: " + message); BigInteger cipher = rsa.encrypt(message); System.out.println("Encrypted message: " + cipher); String decryptedMessage = rsa.decrypt(cipher); System.out.println("Decrypted message: " + decryptedMessage); }}为什么我解析的报文会得到乱码
时间: 2024-03-13 17:43:37 浏览: 107
用JAVA作的RSA
您的加密和解密方法是基于字节转换为 BigInteger 来实现的,这可能会导致一些问题。因为当您将字节转换为 BigInteger 时,它们的编码方式可能会影响最终结果。如果您使用的是默认编码方式,那么在某些情况下,解密后的结果可能会是乱码。
为了解决这个问题,您可以在加密和解密方法中指定使用特定的编码方式,例如 UTF-8。具体来说,在 `encrypt` 方法中,您可以将 `String` 对象转换为字节数组时,使用 `getBytes("UTF-8")` 方法;在 `decrypt` 方法中,您可以将 `BigInteger` 对象转换为字节数组后,使用 `new String(bytes, "UTF-8")` 方法来构造字符串。
修改后的 `encrypt` 和 `decrypt` 方法如下所示:
```
public BigInteger encrypt(String message) {
byte[] bytes = message.getBytes("UTF-8");
BigInteger m = new BigInteger(bytes);
return m.modPow(e, n);
}
public String decrypt(BigInteger cipher) {
BigInteger m = cipher.modPow(d, n);
byte[] bytes = m.toByteArray();
return new String(bytes, "UTF-8");
}
```
这样修改后,您应该能够正确地加密和解密包含非 ASCII 字符的消息了。
阅读全文