README.textile
changeset 5 b2e360b78189
parent 4 f4709533c816
child 6 2d7692f9b6b4
     1.1 --- a/README.textile	Thu Apr 09 21:36:21 2009 -0700
     1.2 +++ b/README.textile	Thu Apr 09 22:27:51 2009 -0700
     1.3 @@ -1,6 +1,6 @@
     1.4  h1=. MYCrypto
     1.5  
     1.6 -p=. Version 0.1 -- 6 April 2009
     1.7 +p=. Version 0.1 -- 9 April 2009
     1.8  
     1.9  p=. By "Jens Alfke":mailto:jens@mooseyard.com <br>
    1.10  Based in part on code by Wade Tregaskis, <br>
    1.11 @@ -16,6 +16,7 @@
    1.12  
    1.13  * Symmmetric cryptography (session keys and password-based encryption)
    1.14  * Asymmetric cryptography (public and private keys; digital signatures)
    1.15 +* Identity certificates (for use with SSL and CMS)
    1.16  * Cryptographic digests/hashes (effectively-unique IDs for data)
    1.17  * The Keychain (a secure, encrypted storage system for keys and passwords)
    1.18  
    1.19 @@ -43,7 +44,6 @@
    1.20  
    1.21  * 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.
    1.22  * 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.
    1.23 -* No creating or signing certificate-requests, or creating self-signed certificates.
    1.24  * No evaluation of trust in certificates (i.e. SecTrust and related APIs.)
    1.25  * 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.
    1.26  
    1.27 @@ -51,18 +51,20 @@
    1.28  
    1.29  The class hierarchy of MYCrypto looks like this:
    1.30  
    1.31 -* "MYKeychainItem":Documentation/html/interfaceMYKeychainItem.html
    1.32 -** "MYKey":Documentation/html/interfaceMYKey.html
    1.33 -*** "*MYSymmetricKey*":Documentation/html/interfaceMYSymmetricKey.html
    1.34 -*** "*MYPublicKey*":Documentation/html/interfaceMYPublicKey.html
    1.35 -*** "*MYPrivateKey*":Documentation/html/interfaceMYPrivateKey.html
    1.36 -*** "*MYCertificate*":Documentation/html/interfaceMYCertificate.html
    1.37 -* "MYDigest":Documentation/html/interfaceMYDigest.html
    1.38 -** "*MYSHA1Digest*":Documentation/html/interfaceMYSHA1Digest.html
    1.39 -** "*MYSHA256Digest*":Documentation/html/interfaceMYSHA256Digest.html
    1.40 +* "_MYKeychain_":Documentation/html/interfaceMYKeychain.html
    1.41 +* "_MYKeychainItem_":Documentation/html/interfaceMYKeychainItem.html
    1.42 +** "_MYKey_":Documentation/html/interfaceMYKey.html
    1.43 +*** "MYSymmetricKey":Documentation/html/interfaceMYSymmetricKey.html
    1.44 +*** "MYPublicKey":Documentation/html/interfaceMYPublicKey.html
    1.45 +*** "MYPrivateKey":Documentation/html/interfaceMYPrivateKey.html
    1.46 +*** "MYCertificate":Documentation/html/interfaceMYCertificate.html
    1.47 +**** "MYIdentity":Documentation/html/interfaceMYIdentity.html
    1.48 +* "_MYDigest_":Documentation/html/interfaceMYDigest.html
    1.49 +** "MYSHA1Digest":Documentation/html/interfaceMYSHA1Digest.html
    1.50 +** "MYSHA256Digest":Documentation/html/interfaceMYSHA256Digest.html
    1.51  * "MYCryptor":Documentation/html/interfaceMYCryptor.html
    1.52  
    1.53 -(*Boldface* classes are concrete, others are abstract.)
    1.54 +(_Italicized_ classes are abstract.)
    1.55  
    1.56  h2. References
    1.57  
    1.58 @@ -72,5 +74,5 @@
    1.59  * "??Common Security: CDSA and CSSM, Version 2??":http://www.opengroup.org/publications/catalog/c914.htm (The Open Group)
    1.60  
    1.61  * "??Practical Cryptography??":http://www.schneier.com/book-practical.html (Ferguson and Schneier)
    1.62 -* "??Handbook of Applied Cryptography":http://www.cacr.math.uwaterloo.ca/hac/ (Menezes, van Oorschot, Vanstone) -- free download!
    1.63 +* "??Handbook of Applied Cryptography??":http://www.cacr.math.uwaterloo.ca/hac/ (Menezes, van Oorschot, Vanstone) -- free download!
    1.64  * "??The Devil's InfoSec Dictionary??":http://www.csoonline.com/article/220527/The_Devil_s_Infosec_Dictionary (CSO Online)
    1.65 \ No newline at end of file