所以我试图实现一个我从link to code
获得的字符串加密类当我尝试将它放入我的android项目时,我收到以下错误:
描述资源路径位置类型导入的太阳不能 解决了SimpleProtector.java / EncryptedSMS / src / com / nsaers / encryptedsms行 7 Java问题BASE64Decoder无法解析为a 键入SimpleProtector.java / EncryptedSMS / src / com / nsaers / encryptedsms行 29 Java问题BASE64Encoder无法解析为a 键入SimpleProtector.java / EncryptedSMS / src / com / nsaers / encryptedsms行 21 Java问题
有什么想法吗?
这是我的班级代码:
package com.nsaers.encryptedsms;
import java.security.Key;
import javax.crypto.Cipher;
import javax.crypto.spec.SecretKeySpec;
public class SimpleProtector {
private static final String ALGORITHM = "AES";
private static final byte[] keyValue = new byte[] { 'T', 'h', 'i', 's',
'I', 's', 'A', 'S', 'e', 'c', 'r', 'e', 't', 'K', 'e', 'y' };
public static String encrypt(String valueToEnc) throws Exception {
Key key = generateKey();
Cipher c = Cipher.getInstance(ALGORITHM);
c.init(Cipher.ENCRYPT_MODE, key);
byte[] encValue = c.doFinal(valueToEnc.getBytes());
String encryptedValue = new BASE64Encoder().encode(encValue);
return encryptedValue;
}
public static String decrypt(String encryptedValue) throws Exception {
Key key = generateKey();
Cipher c = Cipher.getInstance(ALGORITHM);
c.init(Cipher.DECRYPT_MODE, key);
byte[] decordedValue = new BASE64Decoder().decodeBuffer(encryptedValue);
byte[] decValue = c.doFinal(decordedValue);
String decryptedValue = new String(decValue);
return decryptedValue;
}
private static Key generateKey() throws Exception {
Key key = new SecretKeySpec(keyValue, ALGORITHM);
// SecretKeyFactory keyFactory =
// SecretKeyFactory.getInstance(ALGORITHM);
// key = keyFactory.generateSecret(new DESKeySpec(keyValue));
return key;
}
}
答案 0 :(得分:4)
使用Android SDK中的Base64
课程代替BASE64Encoder
/ BASE64Decoder
。 API可能略有不同,但它可以满足您的需求。
但是,您的代码仍然不理想:只要您使用String.getBytes
或String
构造函数接受字节数组,就应该指定要使用的编码 - UTF-8可能是最合适的。目前,您将使用系统默认编码,可能为UTF-8(我感觉它总是在Android中),但是您的代码非常脆弱。