Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
569 views
in Technique[技术] by (71.8m points)

cocoa - What are the new "iOS data protection APIs"?

If you Google "iphone data protection apis" you'll see a zillion hits based on press releases.

If you check out http://support.apple.com/kb/HT4175 you can see Apple making the indication directly.

Where are/what are these APIs? I've used the old crypto APIs before iOS4, so they're not those. These APIs are supposed to give MDM (Mobile Device Management)-type capability for 3rd-party apps.

TIA!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

There are some FileProtection options you can set when writing an NSData to disk:

  • NSDataWritingFileProtectionComplete
  • NSDataWritingFileProtectionNone)

as well as an extended attribute, NSFileProtectionKey, you can set on pre-existing files on disk via NSFileManager:

  • NSFileProtectionComplete
  • NSFileProtectionNone

The app delegate is also informed of when your application is (not) going to be able to access protected data:

  • -applicationProtectedDataDidBecomeAvailable:
  • -applicationProtectedDataWillBecomeUnavailable:

All the gory details of encrypting and securing the data are handled by the hardware and OS on your behalf. It's fire-and-forget protection that kicks in whenever the device locks.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...