在Android中实现UTF-8加密/解密可以通过使用Java的标准库和相关的加密算法来实现。以下是一种常见的实现方式:
import java.nio.charset.StandardCharsets;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import javax.crypto.Cipher;
import javax.crypto.spec.SecretKeySpec;
public static String encrypt(String input, String key) throws Exception {
SecretKeySpec secretKey = generateKey(key);
Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");
cipher.init(Cipher.ENCRYPT_MODE, secretKey);
byte[] encryptedBytes = cipher.doFinal(input.getBytes(StandardCharsets.UTF_8));
return android.util.Base64.encodeToString(encryptedBytes, android.util.Base64.DEFAULT);
}
private static SecretKeySpec generateKey(String key) throws NoSuchAlgorithmException {
byte[] keyBytes = key.getBytes(StandardCharsets.UTF_8);
MessageDigest sha = MessageDigest.getInstance("SHA-256");
keyBytes = sha.digest(keyBytes);
return new SecretKeySpec(keyBytes, "AES");
}
public static String decrypt(String encryptedInput, String key) throws Exception {
SecretKeySpec secretKey = generateKey(key);
Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");
cipher.init(Cipher.DECRYPT_MODE, secretKey);
byte[] encryptedBytes = android.util.Base64.decode(encryptedInput, android.util.Base64.DEFAULT);
byte[] decryptedBytes = cipher.doFinal(encryptedBytes);
return new String(decryptedBytes, StandardCharsets.UTF_8);
}
使用示例:
try {
String input = "Hello, World!";
String key = "MySecretKey";
String encrypted = encrypt(input, key);
String decrypted = decrypt(encrypted, key);
System.out.println("Encrypted: " + encrypted);
System.out.println("Decrypted: " + decrypted);
} catch (Exception e) {
e.printStackTrace();
}
这样就可以在Android中实现UTF-8加密/解密。请注意,这只是一种示例实现方式,实际应用中可能需要根据具体需求进行调整和改进。
关于腾讯云相关产品和产品介绍链接地址,由于要求不能提及具体品牌商,建议在腾讯云官方网站上查找相关产品和文档,例如搜索"腾讯云加密服务"或"腾讯云安全服务"等关键词,可以找到适合的产品和文档。
领取专属 10元无门槛券
手把手带您无忧上云