我想實現算法AES 128中的Android,但它不工作,問題是import javax.xml.bind.DatatypeConverter;
替代品DatatypeConverter在Android的
DatatypeConverter.parseHexBinary(key)
和 DatatypeConverter.printBase64Binary(finalData)
是否另一種存在?
我的方法:
private static final String ALGORIT = "AES";
public static String encryptHackro(String plaintext, String key)
throws NoSuchAlgorithmException, NoSuchPaddingException,
InvalidKeyException, IllegalBlockSizeException,
BadPaddingException, IOException, DecoderException {
byte[] raw = DatatypeConverter.parseHexBinary(key);
SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");
Cipher cipher = Cipher.getInstance(ALGORITMO);
cipher.init(Cipher.ENCRYPT_MODE, skeySpec);
byte[] cipherText = cipher.doFinal(plaintext.getBytes(""));
byte[] iv = cipher.getIV();
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
outputStream.write(iv);
outputStream.write(cipherText);
byte[] finalData = outputStream.toByteArray();
String encodedFinalData = DatatypeConverter.printBase64Binary(finalData);
return encodedFinalData;
}
我看到別人answers,但我無法實現的解決方案。
爲什麼你不能使用給定的替代方案?你遇到了什麼問題? –
加密結果不同 –
然後你做錯了什麼。你應該顯示你的嘗試。 –