是否可以生成64字节(256位)密钥并使用AndroidKeyStore存储/检索它?

时间:2019-01-11 14:12:33

标签: java android encryption android-keystore

在我的Android应用中,我需要一种对存储在本地数据库中的数据进行加密的方法。 我选择Realm DB是因为它提供了与加密的无缝集成。我只需要在初始化Realm实例时传递密钥。该密钥必须为64字节大小。

出于安全原因,我发现最好的存储方式是在AndroidKeyStore中。我正在努力寻找一种方法来生成具有该大小的密钥(使用任何算法),并将其放入64字节数组中。我正在尝试保留API 19的minSdk,但我相信我可以根据需要将其提高到23(这两个版本之间对AndroidKeyStore进行了许多更改)。

有人有想法吗?这是我的代码:

Class Encryption.java

private static KeyStore ks = null;
private static String ALIAS = "com.oi.pap";

public static byte[] loadkey(Context context) {

    byte[] content = new byte[64];
    try {
        if (ks == null) {
            createNewKeys(context);
        }

        ks = KeyStore.getInstance("AndroidKeyStore");
        ks.load(null);

        content= ks.getCertificate(ALIAS).getEncoded(); //<----- HERE, I GET SIZE GREATER THAN 64
        Log.e(TAG, "original key :" + Arrays.toString(content));
    } catch (KeyStoreException | CertificateException | IOException | NoSuchAlgorithmException e) {
        e.printStackTrace();
    }
    content = Arrays.copyOfRange(content, 0, 64); //<---- I would like to remove this part.
    return content;
}

private static void createNewKeys(Context context) throws KeyStoreException, CertificateException, NoSuchAlgorithmException, IOException {

    ks = KeyStore.getInstance("AndroidKeyStore");
    ks.load(null);
    try {
        // Create new key if needed
        if (!ks.containsAlias(ALIAS)) {
            Calendar start = Calendar.getInstance();
            Calendar end = Calendar.getInstance();
            end.add(Calendar.YEAR, 1);
            KeyPairGeneratorSpec spec = new KeyPairGeneratorSpec.Builder(context)
                    .setAlias(ALIAS)
                    .setSubject(new X500Principal("CN=PapRealmKey, O=oipap"))
                    .setSerialNumber(BigInteger.ONE)
                    .setStartDate(start.getTime())
                    .setEndDate(end.getTime())
                    .setKeySize(256)
                    .setKeyType(KeyProperties.KEY_ALGORITHM_EC)
                    .build();
            KeyPairGenerator generator = KeyPairGenerator
                    .getInstance(KeyProperties.KEY_ALGORITHM_RSA, "AndroidKeyStore");
            generator.initialize(spec);

            KeyPair keyPair = generator.generateKeyPair();
            Log.e(TAG, "generated key :" + Arrays.toString(keyPair.getPrivate().getEncoded()));

        }
    } catch (Exception e) {
        Log.e(TAG, Log.getStackTraceString(e));
    }
}

2 个答案:

答案 0 :(得分:2)

AndroidKeyStore的目的是将敏感的密钥材料从您的应用程序,操作系统和安全的硬件中移出,它们永远不会泄漏或受到损害。因此,根据设计,如果您在AndroidKeyStore中创建密钥,则永远无法获取密钥材料。

在这种情况下,Realm DB需要密钥材料,因此您不能为其提供AndroidKeyStore密钥。另外,Realm想要的是两个AES密钥,而不是您尝试生成的EC密钥。

生成所需关键材料的正确方法是:

byte[] dbKey = new byte[64];
Random random = new SecureRandom();
random.nextBytes(dbKey);
// Pass dbKey to Realm DB...
Arrays.fill(dbKey, 0); // Wipe key after use.

仅64个随机字节。但是,您将需要将这些字节存储在某个地方。您可以使用AndroidKeyStore创建AES密钥,然后使用它来加密dbKey。像这样:

KeyGenerator keyGenerator = KeyGenerator.getInstance(
        KeyProperties.KEY_ALGORITHM_AES, "AndroidKeyStore");
keyGenerator.init(
        new KeyGenParameterSpec.Builder("dbKeyWrappingKey",
                KeyProperties.PURPOSE_ENCRYPT | KeyProperties.PURPOSE_DECRYPT)
                .setBlockModes(KeyProperties.BLOCK_MODE_GCM)      
                .setEncryptionPaddings(KeyProperties.ENCRYPTION_PADDING_NONE)
                .build());
SecretKey key = keyGenerator.generateKey();

Cipher cipher = Cipher.getInstance("AES/GCM/NoPadding");
cipher.init(Cipher.ENCRYPT_MODE, key);
byte[] iv = cipher.getIV();
byte[] encryptedDbKey = cipher.doFinal(dbKey);

您需要将ivencryptedDbKey都保存在某个地方(不在数据库中!),以便可以恢复dbKey。然后,您可以使用以下方法对其进行解密:

KeyStore keyStore = KeyStore.getInstance("AndroidKeyStore");
keyStore.load(null);
key = (SecretKey) keyStore.getKey("dbKeyWrappingKey", null);
Cipher cipher = Cipher.getInstance("AES/GCM/NoPadding");
cipher.init(Cipher.DECRYPT_MODE, key, new GCMParameterSpec(128, iv));
byte[] dbKey = cipher.doFinal(encryptedDbKey);
// Pass dbKey to Realm DB and then wipe it.

但是,尽管如此,我不认为您应该做任何事情。我认为这实际上不会为您提供任何安全性,而Android默认情况下不会为您提供任何安全性。如果攻击者试图转储包含您的数据库的设备存储,则他将一无所获,因为Android仍然会加密所有存储。如果攻击者可以启动设备,则他可以像运行您的应用程序一样运行代码,并像使用您的应用程序一样使用它来解密dbKey

如果您在dbKeyWrappingKey上添加一些其他保护,则AndroidKeyStore可能真正增加价值。例如,如果您将其设置为要求在五分钟之内进行用户身份验证,则只有当用户到处输入其PIN码/图案/密码时,才能使用dbWrappingKey来解密dbKey或触摸指纹扫描仪。请注意,这仅在用户具有PIN /图案/密码的情况下有效,但如果没有,则您的数据库对任何仍然接听电话的人都是开放的。

请参阅KeyGenParameterSpec,以了解可以限制dbKeyWrappingKey使用方式的所有事情。

答案 1 :(得分:0)

据我所知,解决此问题的常用方法是,生成自己所需大小的随机密钥(主密钥),并且可以在密钥的帮助下对该主密钥进行加密商店。

  1. 生成所需大小的随机主密钥。
  2. 使用此主密钥加密数据(例如对称加密)。
  3. 借助密钥库对主密钥进行加密。
  4. 将加密的主密钥存储在某个地方。

要解密您的数据,请执行以下操作:

  1. 读取加密的主密钥。
  2. 借助密钥库解密主密钥。
  3. 使用主密钥解密数据。

换句话说,不是主密钥存储在密钥存储区中,但是密钥存储区可用于保护/加密您的主密钥。