javax.crypto.BadPaddingException
Here is the method to convert a hex string to a byte array:
public static byte[] fromHexString(String s) { int len = s.length(); byte[] data = new byte[len / 2]; for (int i = 0; i < len; i += 2) { data[i / 2] = (byte) ((Character.digit(s.charAt(i), 16) << 4) + Character.digit(s.charAt(i+1), 16)); } return data; } //change the method to use as follows: original = cipher.doFinal(fromHexString(message));
Ads