Android中DatatypeConverter的替代品

时间:2015-12-17 18:52:10

标签: java android aes

我在Android中尝试使用AES 128实现算法,但它不起作用,问题是import javax.xml.bind.DatatypeConverter;

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,但我无法实施解决方案。

2 个答案:

答案 0 :(得分:14)

<强>解决方案

我用

解决了我的问题
compile 'commons-codec:commons-codec:1.3'

我使用android.util.Base64 for Android

不兼容 / 替换

DatatypeConverter.parseHexBinary 
org.apache.commons.codec.binary.Hex.decodeHex(key.toCharArray());




DatatypeConverter.printBase64Binary(finalData);
android.util.Base64.encodeToString(finalData, 16) 



DatatypeConverter.parseBase64Binary(encodedInitialData);
org.apache.commons.codec.binary.Hex.decodeHex(key.toCharArray());

答案 1 :(得分:1)

如果您想在 android 中像我一样使用 DatatypeConverter,请将其添加到 build.gradle 文件中:

implementation 'javax.xml.bind:jaxb-api:2.3.1'

这将添加 DatatypeConverter。