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 "MYASN1Object.h"
12 @implementation MYASN1Object
15 - (id) initWithTag: (uint32_t)tag
16 ofClass: (uint8_t)tagClass
17 constructed: (BOOL)constructed
25 _constructed = constructed;
26 _value = [value copy];
31 - (id) initWithTag: (uint32_t)tag
32 ofClass: (uint8_t)tagClass
33 components: (NSArray*)components
41 _components = [components copy];
49 [_components release];
54 @synthesize tag=_tag, tagClass=_tagClass, constructed=_constructed, value=_value, components=_components;
57 - (NSString*)description {
59 return $sprintf(@"%@[%hhu/%u/%u]%@", self.class, _tagClass,(unsigned)_constructed,_tag, _components);
61 return $sprintf(@"%@[%hhu/%u/%u, %u bytes]", self.class, _tagClass,(unsigned)_constructed,_tag, _value.length);
64 static void dump(id object, NSMutableString *output, NSString *indent) {
65 if ([object isKindOfClass: [MYASN1Object class]]) {
66 MYASN1Object *asn1Obj = object;
67 [output appendFormat: @"%@%@[%hhu/%u]", indent, asn1Obj.class, asn1Obj.tagClass,asn1Obj.tag];
68 if (asn1Obj.components) {
69 [output appendString: @":\n"];
70 NSString *subindent = [indent stringByAppendingString: @" "];
71 for (id o in asn1Obj.components)
72 dump(o,output, subindent);
74 [output appendFormat: @" %@\n", asn1Obj.value];
75 } else if([object respondsToSelector: @selector(objectEnumerator)]) {
76 [output appendString: indent];
77 if ([object isKindOfClass: [NSArray class]])
78 [output appendString: @"Sequence:\n"];
79 else if ([object isKindOfClass: [NSSet class]])
80 [output appendString: @"Set:\n"];
82 [output appendFormat: @"%@:\n", [object class]];
83 NSString *subindent = [indent stringByAppendingString: @" "];
85 dump(o,output, subindent);
87 [output appendFormat: @"%@%@\n", indent, object];
91 + (NSString*) dump: (id)object {
92 NSMutableString *output = [NSMutableString stringWithCapacity: 512];
93 dump(object,output,@"");
102 @implementation MYASN1BigInteger
108 @implementation MYBitString
111 - (id)initWithBits: (NSData*)bits count: (unsigned)bitCount;
114 Assert(bitCount <= 8*bits.length);
118 _bitCount = bitCount;
129 @synthesize bits=_bits, bitCount=_bitCount;
131 - (NSString*) description {
132 return $sprintf(@"%@%@", [self class], _bits);