我有密码可以找到装置的 IMEI 编号, 但现在我想加密这个格式, 我如何加密?
加密 IMEI 编号
原标题:To Encrypt the IMEI number
最佳回答
在此给您提供使用 加密加密加密加密的样本, 用于使用 Cipher 字符串加密
http://www.androidsnippets.com/encryptdecrypt-strings
问题回答
如果您试图将数字加密到设备上,这是不可能的。
如果您试图用代码加密数字, 有很多方法可以做到这一点, 尝试查看这个代码片断 : < a href="http://www.androidsnippets.com/ encryptdecrypt-strings" rel=“ nofollow” >http://www.androidsnippets.com/ encryptdrypt-strings
您可以使用这样的函数 :
private static byte[] encrypt(byte[] raw, byte[] clear) throws Exception {
SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");
Cipher cipher = Cipher.getInstance("AES");
cipher.init(Cipher.ENCRYPT_MODE, skeySpec);
byte[] encrypted = cipher.doFinal(clear);
return encrypted;
}
private static byte[] decrypt(byte[] raw, byte[] encrypted) throws Exception {
SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");
Cipher cipher = Cipher.getInstance("AES");
cipher.init(Cipher.DECRYPT_MODE, skeySpec);
byte[] decrypted = cipher.doFinal(encrypted);
return decrypted;
}
并像这样召唤他们:
ByteArrayOutputStream baos = new ByteArrayOutputStream();
bm.compress(Bitmap.CompressFormat.PNG, 100, baos); // bm is the bitmap object
byte[] b = baos.toByteArray();
byte[] keyStart = "this is a key".getBytes();
KeyGenerator kgen = KeyGenerator.getInstance("AES");
SecureRandom sr = SecureRandom.getInstance("SHA1PRNG");
sr.setSeed(keyStart);
kgen.init(128, sr); // 192 and 256 bits may not be available
SecretKey skey = kgen.generateKey();
byte[] key = skey.getEncoded();
// encrypt
byte[] encryptedData = encrypt(key,b);
// decrypt
byte[] decryptedData = decrypt(key,encryptedData);