RSA加密 - 尝试加密消息会返回错误的值

时间:2013-10-22 19:40:35

标签: java encryption rsa biginteger

我为每个变量设置值以获取加密消息。所有都是硬编码用于测试目的。

当它返回?????时返回值538 1729 1328 1328 2146。有什么我错了吗?这是我对我的代码唯一的问题。

public static void main(String[] args){
    int p = 61;
    int q = 37;
    int pq = p * q;
    int phiPQ = (p - 1) * (q - 1);
    int e = 7;
    int d = 1543;
    String message = encryptMsg("hello", pq, e);
    System.out.println(message);
}

public static String encryptMsg(String msg, int pq, int e){
    BigInteger bE = new BigInteger(Integer.toString(e));
    BigInteger bPQ = new BigInteger(Integer.toString(pq));
    String encryptedMsg = "";
    for(int i = 0; i < msg.length(); i++){
        BigInteger m = new BigInteger(Integer.toString(msg.charAt(i)));
        BigInteger bC = m.modPow(bE, bPQ);
        encryptedMsg += " " + (char)bC.intValue();
    }
    return encryptedMsg;
}

1 个答案:

答案 0 :(得分:1)

我想你可能想要

encryptedMsg +=" " + bC.toString();

目前你正在将整数转换为一个字符,所以我想回到unicode,而你似乎期待的是整数作为字符串。