diff -r 2c300b15b381 -r d0aadddb9c64 MYPublicKey.h --- a/MYPublicKey.h Sat Jun 06 15:01:28 2009 -0700 +++ b/MYPublicKey.h Tue Jul 21 10:13:08 2009 -0700 @@ -7,7 +7,7 @@ // #import "MYKey.h" -@class MYSHA1Digest, MYSymmetricKey; +@class MYSHA1Digest, MYSymmetricKey, MYCertificate; #if !TARGET_OS_IPHONE #import @@ -20,7 +20,8 @@ @interface MYPublicKey : MYKey { @private - MYSHA1Digest *_digest; + MYSHA1Digest *_digest; // The key's SHA-1 digest (null if not determined yet) + MYCertificate *_certificate; // The cert this key came from (if any) } /** The public key's SHA-1 digest. This is a convenient short (20-byte) identifier for the key. */