117.info
人生若只如初见

android sharedpreference怎样进行数据加密

在Android中,SharedPreferences本身不提供内置的数据加密功能。但是,您可以在将数据存储到SharedPreferences之前对其进行加密,并在从SharedPreferences读取数据时进行解密。以下是一个使用AES加密和解密的示例:

首先,您需要添加加密库,例如:

implementation 'com.google.crypto:crypto-commons:1.1.1'

然后,您可以使用以下代码进行加密和解密:

import android.content.Context;
import android.security.keystore.KeyGenParameterSpec;
import android.security.keystore.KeyProperties;

import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.security.KeyStore;
import java.security.NoSuchAlgorithmException;
import java.security.UnrecoverableKeyException;
import java.util.Base64;

import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;

public class EncryptionHelper {

    private static final String KEY_ALIAS = "my_key_alias";
    private static final String TRANSFORMATION = "AES";

    public static SecretKey getSecretKey(Context context) throws NoSuchAlgorithmException, UnrecoverableKeyException {
        KeyStore keyStore = KeyStore.getInstance("AndroidKeyStore");
        keyStore.load(null);

        if (!keyStore.containsAlias(KEY_ALIAS)) {
            KeyGenerator keyGenerator = KeyGenerator.getInstance(KeyProperties.KEY_ALGORITHM_AES, "AndroidKeyStore");
            KeyGenParameterSpec keyGenParameterSpec = new KeyGenParameterSpec.Builder(
                    KEY_ALIAS, KeyProperties.PURPOSE_ENCRYPT | KeyProperties.PURPOSE_DECRYPT)
                    .setBlockModes(KeyProperties.BLOCK_MODE_GCM)
                    .setEncryptionPaddings(KeyProperties.ENCRYPTION_PADDING_NONE)
                    .build();
            keyGenerator.init(keyGenParameterSpec);
            keyGenerator.generateKey();
        }

        return (SecretKey) keyStore.getKey(KEY_ALIAS, null);
    }

    public static String encrypt(String data, SecretKey secretKey) throws Exception {
        Cipher cipher = Cipher.getInstance(TRANSFORMATION);
        cipher.init(Cipher.ENCRYPT_MODE, secretKey);
        byte[] encryptedBytes = cipher.doFinal(data.getBytes(StandardCharsets.UTF_8));
        return Base64.getEncoder().encodeToString(encryptedBytes);
    }

    public static String decrypt(String encryptedData, SecretKey secretKey) throws Exception {
        Cipher cipher = Cipher.getInstance(TRANSFORMATION);
        cipher.init(Cipher.DECRYPT_MODE, secretKey);
        byte[] decodedBytes = Base64.getDecoder().decode(encryptedData);
        byte[] decryptedBytes = cipher.doFinal(decodedBytes);
        return new String(decryptedBytes, StandardCharsets.UTF_8);
    }
}

现在,您可以使用EncryptionHelper类来加密和解密数据:

try {
    Context context = getApplicationContext();
    SecretKey secretKey = EncryptionHelper.getSecretKey(context);

    String originalData = "https://www.yisu.com/ask/Hello, World!";
    String encryptedData = https://www.yisu.com/ask/EncryptionHelper.encrypt(originalData, secretKey);"Original Data: " + originalData);
    System.out.println("Encrypted Data: " + encryptedData);
    System.out.println("Decrypted Data: " + decryptedData);
} catch (Exception e) {
    e.printStackTrace();
}

请注意,这个示例使用了Android KeyStore系统来生成和存储密钥。这样,即使设备受到攻击,密钥也不会轻易泄露。

未经允许不得转载 » 本文链接:https://www.117.info/ask/fe9c9AzsIBANQBg.html

推荐文章

  • android和linux的关系是什么

    Android和Linux之间的关系主要体现在Android是基于Linux内核开发的移动操作系统。以下是关于Android和Linux关系的详细分析:
    Android和Linux的关系 基础内核...

  • android handler使用的方法是什么

    Android Handler是用于处理线程间通信的一个类。它主要使用以下方法: Handler(Looper looper):构造函数,用于创建一个Handler实例并关联一个Looper。Looper是线...

  • 如何提高android studio编译速度

    要提高Android Studio的编译速度,可以尝试以下方法: 更新Android Studio和Gradle插件:确保你使用的是最新版本的Android Studio和Gradle插件,因为它们包含性能...

  • gradle的版本怎么与android匹配

    为了确保Gradle版本与Android Studio的兼容性,你需要遵循一定的版本匹配规则。以下是关于如何匹配Gradle版本与Android Studio的详细指南:
    Gradle与Androi...

  • rust clippy如何有效使用

    Clipper 是一个 Rust 编译器的 linter,可以帮助你在编写代码时发现潜在的问题和不良编码实践。要有效地使用 Clippy,请遵循以下步骤: 安装 Clippy:
    首先...

  • android progressdialog有哪些常见问题

    在Android开发中,ProgressDialog是一个常用的对话框,用于在后台任务执行时显示进度信息给用户。然而,开发者在使用ProgressDialog时可能会遇到一些问题。以下是...

  • android progressdialog能否多次调用

    是的,Android的ProgressDialog可以多次调用。但是,需要注意的是,每次调用ProgressDialog时,都需要确保已经取消了之前的ProgressDialog实例,否则可能会导致多...

  • android progressdialog如何优化用户体验

    要优化Android ProgressDialog的用户体验,可以采取以下措施: 使用适当的进度指示器类型:根据应用程序的需求选择合适的进度指示器类型,例如圆形进度条、水平进...