Is there an equivalent to iOS's Keychain for user credentials on Android?

前端 未结 4 1254
青春惊慌失措
青春惊慌失措 2020-12-04 21:04

Is there an equivalent to iOS\'s Keychain on Android?

My understanding of the Preferences API is that it is not encrypted. For my application it does

4条回答
  •  孤街浪徒
    2020-12-04 21:28

    Short answer, there isn't one. But you can expect the filesystem to be secure.

    Each app operates under a different user, and the filesystem used to store app data is secured by normal UNIX user permissions. So each app's file access is sandboxed by default. The filesystem also may be encrypted.

    This page from the developer's site explains it better: http://developer.android.com/guide/topics/security/security.html

提交回复
热议问题