1.1 --- a/MYPublicKey.h Sat Jun 06 15:01:28 2009 -0700
1.2 +++ b/MYPublicKey.h Tue Jul 21 10:13:08 2009 -0700
1.3 @@ -7,7 +7,7 @@
1.4 //
1.5
1.6 #import "MYKey.h"
1.7 -@class MYSHA1Digest, MYSymmetricKey;
1.8 +@class MYSHA1Digest, MYSymmetricKey, MYCertificate;
1.9
1.10 #if !TARGET_OS_IPHONE
1.11 #import <Security/SecKey.h>
1.12 @@ -20,7 +20,8 @@
1.13 @interface MYPublicKey : MYKey
1.14 {
1.15 @private
1.16 - MYSHA1Digest *_digest;
1.17 + MYSHA1Digest *_digest; // The key's SHA-1 digest (null if not determined yet)
1.18 + MYCertificate *_certificate; // The cert this key came from (if any)
1.19 }
1.20
1.21 /** The public key's SHA-1 digest. This is a convenient short (20-byte) identifier for the key. */