我需要能够从Windows向各种手机发送安全信息。我在iPhone和Android开发方面都是新手,但需要为每个环境创建一个易于使用的应用程序。与收到的SMS短信接口也很不错。我想为iPhone,Android和Windows XP(以及更高版本)获取AES 256加密代码。
由于
默里
答案 0 :(得分:4)
实施AES加密时需要注意的几件重要事项:1。切勿使用纯文本作为加密密钥。始终散列纯文本密钥,然后用于加密。
2。始终使用随机IV(初始化向量)进行加密和解密。真正的随机化非常重要。
我最近在Github上发布了针对C#,iOS和Android的跨平台AES加密和解密库。你可以在这里看到它 - https://github.com/Pakhee/Cross-platform-AES-encryption
答案 1 :(得分:3)
对于iPhone,我使用AESCrypt-ObjC,而Android则使用此代码:
public class AESCrypt {
private final Cipher cipher;
private final SecretKeySpec key;
private AlgorithmParameterSpec spec;
public AESCrypt(String password) throws Exception
{
// hash password with SHA-256 and crop the output to 128-bit for key
MessageDigest digest = MessageDigest.getInstance("SHA-256");
digest.update(password.getBytes("UTF-8"));
byte[] keyBytes = new byte[32];
System.arraycopy(digest.digest(), 0, keyBytes, 0, keyBytes.length);
cipher = Cipher.getInstance("AES/CBC/PKCS7Padding");
key = new SecretKeySpec(keyBytes, "AES");
spec = getIV();
}
public AlgorithmParameterSpec getIV()
{
byte[] iv = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, };
IvParameterSpec ivParameterSpec;
ivParameterSpec = new IvParameterSpec(iv);
return ivParameterSpec;
}
public String encrypt(String plainText) throws Exception
{
cipher.init(Cipher.ENCRYPT_MODE, key, spec);
byte[] encrypted = cipher.doFinal(plainText.getBytes("UTF-8"));
String encryptedText = new String(Base64.encode(encrypted, Base64.DEFAULT), "UTF-8");
return encryptedText;
}
public String decrypt(String cryptedText) throws Exception
{
cipher.init(Cipher.DECRYPT_MODE, key, spec);
byte[] bytes = Base64.decode(cryptedText, Base64.DEFAULT);
byte[] decrypted = cipher.doFinal(bytes);
String decryptedText = new String(decrypted, "UTF-8");
return decryptedText;
}
}
答案 2 :(得分:1)
如果您仍在寻找这两种设备的实施方案,iPhone和Android会查看this post。我和朋友一起创造了它。在iPhone帖子下你会找到Android部分。两者都可以通过将它们插入您的项目来使用,如解释。
如果你想使用另一种算法,你应该看看它们是如何在iPhone和Android中调用的,并在方法内的任何地方进行更改。
答案 3 :(得分:0)
不同的语言具有不同的加密类实现。所以我不认为有一个可以在所有平台上运行的库。
您尚未指定在Windows上为您的应用程序使用的语言。 Ť
这里没有简单的加密和解密方法。所以我建议你至少得到一个关于加密算法如何适用于不同密钥大小,IV,操作模式和填充的坚实基础。另外,如何生成安全密钥,如何使用非对称密码术等将密钥从一个用户传输到另一个用户等。或者您是否已经掌握了密码学的理论知识?
适用于iPhone
我对SDK中提供的加密类没有任何想法。不过请看this question。
适用于Android
你有几个选择。
Here is a question你会感兴趣的。
适用于Windows。