gpt4 book ai didi

android - 如何在 Android 中使用 AES 加密 SD 卡中的文件?

转载 作者:IT老高 更新时间:2023-10-28 21:40:24 27 4
gpt4 key购买 nike

我想加密来自 SD 卡的图像并再次使用 AES 将其再次存储在 SD 卡中。主要思想是应用程序浏览图像,然后在我按下按钮时对其进行加密,然后将其存储在 sd 卡中。所以我的形象是安全的。

我已经成功使用本教程中的 AES 进行字符串加密 http://www.androidsnippets.com/encryptdecrypt-strings ,但我不知道如何使用图像而不是字符串来执行此操作。

这就是我使用字符串的方式:

public static String encrypt(String seed, String cleartext) throws Exception  
{
byte[] rawKey = getRawKey(seed.getBytes());
byte[] result = encrypt(rawKey, cleartext.getBytes());
return toHex(result);
}

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;
}

谁能帮我提供如何使用 AES 加密图像的示例代码?

也许它必须使用 I/O 文件流,但我不知道如何使用此代码实现。

最佳答案

如果您使用用户输入的密码,请务必阅读 this answer .

你应该看看: CipherInputStreamCipherOutputStream .它们用于加密和解密字节流。

我有一个名为 cleartext 的文件。该文件包含:

Hi, I'm a clear text.
How are you?
That's awesome!

现在,你有一个 encrypt() 函数:

static void encrypt() throws IOException, NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException {
// Here you read the cleartext.
FileInputStream fis = new FileInputStream("data/cleartext");
// This stream write the encrypted text. This stream will be wrapped by another stream.
FileOutputStream fos = new FileOutputStream("data/encrypted");

// Length is 16 byte
// Careful when taking user input!!! https://stackoverflow.com/a/3452620/1188357
SecretKeySpec sks = new SecretKeySpec("MyDifficultPassw".getBytes(), "AES");
// Create cipher
Cipher cipher = Cipher.getInstance("AES");
cipher.init(Cipher.ENCRYPT_MODE, sks);
// Wrap the output stream
CipherOutputStream cos = new CipherOutputStream(fos, cipher);
// Write bytes
int b;
byte[] d = new byte[8];
while((b = fis.read(d)) != -1) {
cos.write(d, 0, b);
}
// Flush and close streams.
cos.flush();
cos.close();
fis.close();
}

执行此函数后,应该有一个文件名加密。该文件包含加密字符。

对于解密,您有 decrypt 功能:

static void decrypt() throws IOException, NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException {
FileInputStream fis = new FileInputStream("data/encrypted");

FileOutputStream fos = new FileOutputStream("data/decrypted");
SecretKeySpec sks = new SecretKeySpec("MyDifficultPassw".getBytes(), "AES");
Cipher cipher = Cipher.getInstance("AES");
cipher.init(Cipher.DECRYPT_MODE, sks);
CipherInputStream cis = new CipherInputStream(fis, cipher);
int b;
byte[] d = new byte[8];
while((b = cis.read(d)) != -1) {
fos.write(d, 0, b);
}
fos.flush();
fos.close();
cis.close();
}

执行解密后,应该有一个名为decrypted的文件。此文件包含自由文本。

您写的是“菜鸟”,但根据加密的用例,如果您没有以正确的方式进行操作,您可能会造成很大的伤害。了解你的工具!

CipherOutputStream 的使用 Oracle documentation :

SecretKeySpec skeySpec = new SecretKeySpec(y.getBytes(), "AES");

FileInputStream fis;
FileOutputStream fos;
CipherOutputStream cos;
// File you are reading from
fis = new FileInputStream("/tmp/a.txt");
// File output
fos = new FileOutputStream("/tmp/b.txt");

// Here the file is encrypted. The cipher1 has to be created.
// Key Length should be 128, 192 or 256 bit => i.e. 16 byte
SecretKeySpec skeySpec = new SecretKeySpec("MyDifficultPassw".getBytes(), "AES");
Cipher cipher1 = Cipher.getInstance("AES");
cipher1.init(Cipher.ENCRYPT_MODE, skeySpec);
cos = new CipherOutputStream(fos, cipher1);
// Here you read from the file in fis and write to cos.
byte[] b = new byte[8];
int i = fis.read(b);
while (i != -1) {
cos.write(b, 0, i);
i = fis.read(b);
}
cos.flush();

因此,加密应该可以工作。当您反转该过程时,您应该能够读取解密的字节。

关于android - 如何在 Android 中使用 AES 加密 SD 卡中的文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10782187/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com