jens@17: // jens@17: // MYParsedCertificate.h jens@17: // MYCrypto jens@17: // jens@17: // Created by Jens Alfke on 6/2/09. jens@17: // Copyright 2009 Jens Alfke. All rights reserved. jens@17: // jens@17: jens@17: #import jens@17: @class MYCertificate, MYOID; jens@17: jens@17: /** A parsed X.509 certificate. Can be used to get more info about an existing cert, jens@17: or to modify a self-signed cert and regenerate it. */ jens@17: @interface MYParsedCertificate : NSObject jens@17: { jens@17: NSData *_data; jens@17: id _root; jens@17: MYCertificate *_issuer; jens@17: } jens@17: jens@17: + (MYOID*) RSAWithSHA1AlgorithmID; jens@17: jens@17: - (id) initWithCertificateData: (NSData*)data error: (NSError**)outError; jens@17: jens@17: /** Associates the certificate to its issuer. jens@17: If the cert is not self-signed, you must manually set this property before verifying. */ jens@17: @property (retain) MYCertificate* issuer; jens@17: jens@17: @end