Android KeyStore Initialization

前端 未结 2 1494
遇见更好的自我
遇见更好的自我 2021-02-11 09:29

First off I am new to android Programming, though I am not new to programming itself. What I am, essentially, trying to do is to save my encryption Keys into the Android Keystor

2条回答
  •  我在风中等你
    2021-02-11 09:57

    I think Android Key Store does not support symmetric keys like AES keys. Please refer to here. BTW, why does the app need so many symmetric keys? I suggest that you store one master asymmetric key in key store, and use this key to encrypt many other symmetric keys in your app. Hope you solve your problem soon.

提交回复
热议问题