我知道,与此主题相关的话题很多-我已经阅读了大多数主题,但是没有一个主题给我正确的答案。
我有以下代码:
import android.util.Base64;
import java.security.Key;
import javax.crypto.Cipher;
import javax.crypto.spec.SecretKeySpec;
public class Crypter {
public static void main(String[] args) {
String data = "Arnab C";
final String enc = DarKnight.getEncrypted(data);
System.out.println("Encrypted : " + enc);
System.out.println("Decrypted : " + DarKnight.getDecrypted(enc));
}
static class DarKnight {
private static final String ALGORITHM = "AES";
private static final byte[] SALT = "tHeApAcHe6410111".getBytes();// THE KEY MUST BE SAME
private static final String X = DarKnight.class.getSimpleName();
static String getEncrypted(String plainText) {
if (plainText == null) {
return null;
}
Key salt = getSalt();
try {
Cipher cipher = Cipher.getInstance(ALGORITHM);
cipher.init(Cipher.ENCRYPT_MODE, salt);
byte[] encodedValue = cipher.doFinal(plainText.getBytes());
return Base64.encode(encodedValue,Base64.DEFAULT);
} catch (Exception e) {
e.printStackTrace();
}
throw new IllegalArgumentException("Failed to encrypt data");
}
public static String getDecrypted(String encodedText) {
if (encodedText == null) {
return null;
}
Key salt = getSalt();
try {
Cipher cipher = Cipher.getInstance(ALGORITHM);
cipher.init(Cipher.DECRYPT_MODE, salt);
byte[] decodedValue = Base64.decode(encodedText, Base64.DEFAULT);
byte[] decValue = cipher.doFinal(decodedValue);
return new String(decValue);
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
static Key getSalt() {
return new SecretKeySpec(SALT, ALGORITHM);
}
}
}
我从Encryption Between PHP & Java复制了此文件-但更改了
import com.sun.org.apache.xml.internal.security.utils.Base64;
到
import android.util.Base64;
因为apache-version在Java8中不起作用。
由于该更改,我不得不在Base64.decode和Base64.encode中都添加一个标志。在解码时效果很好:
byte[] decodedValue = Base64.decode(encodedText, Base64.DEFAULT);
但是在向Base64.encode添加标志时,会发生一些奇怪的事情:
当我写“ return Base64.encode(”)时,Android Studio告诉我它需要一个byte []输入和一个int标志。 所以我想,我可以简单地将变量encodeValue用作第一个参数,因为它是一个byte []。 作为下一个参数,我可以使用Base64.DEFAULT,它是一个值为0的int。 但是Android Studio不同意:不兼容的类型,必需:java.lang.String,找到:byte []。
为什么Android Studio最初要求一个字节[]时为什么需要一个字符串[]?
实际上,“为什么”并不那么重要,更重要的是:我该如何解决?
任何帮助将不胜感激。
答案 0 :(得分:1)
使用encodeToString()
而不是encode()
。前者返回函数返回类型所期望的String
,后者返回byte[]
。
文档:https://developer.android.com/reference/android/util/Base64