我不是密码学专家,当我使用下面的加密方法时,我得到了一些有趣的结果。
服务器是 .NET C#,客户端运行 JAVA。基本上,我们对信用卡信息进行加密,对于我拥有的 12 张信用卡,其中 11 张与以下方法完美配合。
但是,其中一张卡(真正的 VISA 信用卡)返回encrypt()
并转换为十六进制的结果在字符串的开头有一个负号,如下所示:
-6d9830a52b2c3add7a78fd9897bca19d.....
,当服务器尝试解密它时它会失败,我认为它应该是正数而不是负数,基于这个解释RSA - Encryption withnegative exponent
private static byte[] encrypt(String text, PublicKey pubRSA) throws Exception
{
Cipher cipher = Cipher.getInstance(RSA);
cipher.init(Cipher.ENCRYPT_MODE, pubRSA);
return cipher.doFinal(text.getBytes());
}
//Using this encryption method one card could not be decrypted by vPAY due to negative (exponential) symbol.
//It may have the same affect with other cards
public final static byte[] encrypt(String text)
{
try {
KeyFactory keyFactory = KeyFactory.getInstance("RSA");
X509EncodedKeySpec x509Spec = new X509EncodedKeySpec(Base64.decode(pkBase64));
PublicKey pk = keyFactory.generatePublic(x509Spec);
return encrypt(text, pk);
}
catch(Exception e)
{
e.printStackTrace();
}
return null;
}
有没有人遇到过类似的事情并找到了解决方法?我已经尝试了其他三种具有不同KeySpec
且相同的 publicKey 的算法(源是 base64 格式的字符串),但即使使用之前工作的卡,服务器也无法解密它们......
更新 1
这是将加密结果以字节为单位转换为 HEX 的方式:
public static String byteToHex(byte[] string)
{
try {
return String.format("%04x", new BigInteger(string));
} catch (Exception e) {
// TODO Auto-generated catch block
return null;
}
}