MYParsedCertificate.h
changeset 18 a06e44b9b898
child 19 f6c91b9da05b
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/MYParsedCertificate.h	Wed Jun 03 17:22:42 2009 -0700
     1.3 @@ -0,0 +1,29 @@
     1.4 +//
     1.5 +//  MYParsedCertificate.h
     1.6 +//  MYCrypto
     1.7 +//
     1.8 +//  Created by Jens Alfke on 6/2/09.
     1.9 +//  Copyright 2009 Jens Alfke. All rights reserved.
    1.10 +//
    1.11 +
    1.12 +#import <Foundation/Foundation.h>
    1.13 +@class MYCertificate, MYOID;
    1.14 +
    1.15 +/** A parsed X.509 certificate. Can be used to get more info about an existing cert,
    1.16 +    or to modify a self-signed cert and regenerate it. */
    1.17 +@interface MYParsedCertificate : NSObject 
    1.18 +{
    1.19 +    NSData *_data;
    1.20 +    id _root;
    1.21 +    MYCertificate *_issuer;
    1.22 +}
    1.23 +
    1.24 ++ (MYOID*) RSAWithSHA1AlgorithmID;
    1.25 +
    1.26 +- (id) initWithCertificateData: (NSData*)data error: (NSError**)outError;
    1.27 +
    1.28 +/** Associates the certificate to its issuer.
    1.29 +    If the cert is not self-signed, you must manually set this property before verifying. */
    1.30 +@property (retain) MYCertificate* issuer;
    1.31 +
    1.32 +@end