Added MYParsedCertificate, for working with the innards of X.509 certs. Currently it can parse cert data, extract the public key, and verify the signature. More to come.
5 // Created by Jens Alfke on 5/28/09.
6 // Copyright 2009 Jens Alfke. All rights reserved.
9 #import <Cocoa/Cocoa.h>
12 /** An ASN.1 Object-ID, which is a sequence of integer components that define namespaces. */
13 @interface MYOID : NSObject <NSCopying>
18 - (id) initWithComponents: (const UInt32*)components count: (unsigned)componentCount;
19 - (id) initWithBEREncoding: (NSData*)encoding;
20 - (NSData*) DEREncoding;
22 - (const UInt32*) components;
23 - (unsigned) componentCount;