Fixed DEREncoder test case to use the test self-signed cert, not the iphone dev cert, which doesn't pass the test case yet.
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;