How to see the keychain for iphone simulator

后端 未结 2 1246
南旧
南旧 2021-02-01 02:54

I have developed an iPhone application in which I am encrypting and decrypting data using public and private key. I want to see this keys in the Keychain. I got the keychain en

相关标签:
2条回答
  • 2021-02-01 03:23

    The iPhone simulator keychain is stored in ~/Library/Application Support/iPhone Simulator/<Version Number>/Library/Keychains/ and is in sqlite3 DB format. The location of the file on the device itself is unimportant, as you can only access it through the keychain API (but a path with a few similarities to the simulator path wouldn't surprise anyone).

    0 讨论(0)
  • 2021-02-01 03:23

    You must acces the keychain through the keychain API, just like explained in this example.

    0 讨论(0)
提交回复
热议问题