Updated the README for the 0.1 release.
3 p=. Version 0.1 -- 9 April 2009
5 p=. By "Jens Alfke":mailto:jens@mooseyard.com <br>
6 Based in part on code by Wade Tregaskis, <br>
7 and sample code by Apple Computer.
11 *MYCrypto* is a high-level cryptography API for Mac OS X and iPhone. It's an Objective-C wrapper around the system
12 "*Keychain*":http://developer.apple.com/documentation/Security/Conceptual/keychainServConcepts/02concepts/concepts.html#//apple_ref/doc/uid/TP30000897-CH204-TP9
13 and *CSSM* APIs, which are notoriously hard to use, as well as *CommonCrypto*, which is easier but quite limited.
15 MYCrypto gives you easy object-oriented interfaces to:
17 * Symmmetric cryptography (session keys and password-based encryption)
18 * Asymmetric cryptography (public and private keys; digital signatures)
19 * Identity certificates (for use with SSL and CMS)
20 * Cryptographic digests/hashes (effectively-unique IDs for data)
21 * The Keychain (a secure, encrypted storage system for keys and passwords)
25 * Mac OS X 10.5 or later _[has been tested on 10.5.6]_
26 * or iPhone OS 2.0 or later _[not yet tested; see Limitations section below]_
27 * or iPhone Simulator, for iPhone OS 2.0 or later
28 * The "MYUtilities":http://mooseyard.com/hg/hgwebdir.cgi/MYUtilities library, which is used by MYCrypto.
29 * _Some understanding of security and cryptography on your part!_ Even with convenient APIs, cryptographic operations still require care and knowledge to be used safely. There are already too many "examples":http://en.wikipedia.org/wiki/Wired_Equivalent_Privacy#Flaws of insecure systems that were incorrectly assembled from secure primitives; don't add your app to that list. Please read a good overview like "??Practical Cryptography??":http://www.schneier.com/book-practical.html before attempting anything the least bit fancy.
33 * "Download the current source code":http://mooseyard.com/hg/hgwebdir.cgi/MYCrypto/archive/tip.zip
34 * To check out the source code using "Mercurial":http://selenic.com/mercurial/:<br>
35 @hg clone /hg/hgwebdir.cgi/MYCrypto/ MYCrypto@
36 * As described above, you'll also need to download or check out MYUtilities and put it in a directory next to MYCrypto.
37 * Or if you're just looking:
38 ** "Browse the source code":http://mooseyard.com/hg/hgwebdir.cgi/MYCrypto/file/tip
39 ** "Browse the class documentation":Documentation/html/hierarchy.html
43 The class hierarchy of MYCrypto looks like this:
45 * "_MYKeychain_":Documentation/html/interfaceMYKeychain.html
46 * "_MYKeychainItem_":Documentation/html/interfaceMYKeychainItem.html
47 ** "_MYKey_":Documentation/html/interfaceMYKey.html
48 *** "MYSymmetricKey":Documentation/html/interfaceMYSymmetricKey.html
49 *** "MYPublicKey":Documentation/html/interfaceMYPublicKey.html
50 *** "MYPrivateKey":Documentation/html/interfaceMYPrivateKey.html
51 *** "MYCertificate":Documentation/html/interfaceMYCertificate.html
52 **** "MYIdentity":Documentation/html/interfaceMYIdentity.html
53 * "_MYDigest_":Documentation/html/interfaceMYDigest.html
54 ** "MYSHA1Digest":Documentation/html/interfaceMYSHA1Digest.html
55 ** "MYSHA256Digest":Documentation/html/interfaceMYSHA256Digest.html
56 * "MYCryptor":Documentation/html/interfaceMYCryptor.html
58 (_Italicized_ classes are abstract.)
60 h2. Current Limitations
62 h3. First off, the biggest caveat of all:
64 * *MYCrypto 0.1 is new code and has not yet been used in any real projects. Expect bugs.* (I'm talking about my wrapper/glue code. The underlying cryptographic functionality provided by the OS is robust.)
66 h3. Further issues with the 0.1 release:
68 * *MYCrypto does not yet work on the iPhone.* It currently builds, but runs into problems at runtime. I'm currently trying to figure these out. (The iPhone OS Security APIs are very different from the Mac OS X ones, and I'm much less familiar with them.) However, it does work in the iPhone Simulator, which uses the OS X APIs.
69 * Exporting symmetric keys in wrapped (encrypted) form will fail. Currently they can be exported only as raw key data.
70 * Importing symmetric keys, in any form, will fail ... kind of a deal-breaker for using them across two computers, unfortunately.
72 h3. Current API limitations, to be remedied in the future:
74 * No API for accessing passwords; fortunately there are several other utility libraries that provide this. And if your code is doing cryptographic operations, it probably needs to store the keys themselves, not passwords.
75 * No bulk data encryption/decryption using public/private keys. MYKeyPair only does raw RSA crypto, which is slow and limited to small chunks of data.
76 * No evaluation of trust in certificates (i.e. SecTrust and related APIs.)
77 * Error reporting is too limited. Most methods indicate an error by returning nil, NULL or NO, but don't provide the standard "out" NSError parameter to provide more information. Expect the API to be refactored in the near future to remedy this.
81 * "??Security Overview??":http://developer.apple.com/documentation/Security/Conceptual/Security_Overview/Introduction/Introduction.html (Apple)
82 * "??Secure Coding Guide??":http://developer.apple.com/documentation/Security/Conceptual/SecureCodingGuide/Introduction.html (Apple)
84 * "??Common Security: CDSA and CSSM, Version 2??":http://www.opengroup.org/publications/catalog/c914.htm (The Open Group)
86 * "??Practical Cryptography??":http://www.schneier.com/book-practical.html (Ferguson and Schneier)
87 * "??Handbook of Applied Cryptography??":http://www.cacr.math.uwaterloo.ca/hac/ (Menezes, van Oorschot, Vanstone) -- free download!
88 * "??The Devil's InfoSec Dictionary??":http://www.csoonline.com/article/220527/The_Devil_s_Infosec_Dictionary (CSO Online)