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 <Foundation/Foundation.h>
12 /** A generic ASN.1 data value. The BER parser instantiates these to represent parsed values that
13 it doesn't know how to represent otherwise. */
14 @interface MYASN1Object : NSObject
24 - (id) initWithTag: (uint32_t)tag
25 ofClass: (uint8_t)tagClass
26 constructed: (BOOL)constructed
27 value: (NSData*)value;
28 - (id) initWithTag: (uint32_t)tag
29 ofClass: (uint8_t)tagClass
30 components: (NSArray*)components;
32 @property (readonly) uint32_t tag;
33 @property (readonly) uint8_t tagClass;
34 @property (readonly) BOOL constructed;
35 @property (readonly) NSData *value;
36 @property (readonly) NSArray *components;
38 + (NSString*) dump: (id)object;
43 /** An ASN.1 "big" (arbitrary-length) integer.
44 The value contains the bytes of the integer, in big-endian order. */
45 @interface MYASN1BigInteger : MYASN1Object
49 /** An ordered string of bits, as used in ASN.1.
50 This differs from NSData in that it need not occupy a whole number of bytes;
51 that is, the number of bits need not be a multiple of 8. */
52 @interface MYBitString : NSObject
58 - (id)initWithBits: (NSData*)bits count: (NSUInteger)bitCount;
60 @property (readonly, nonatomic) NSData *bits;
61 @property (readonly, nonatomic) NSUInteger bitCount;