MYASN1Object.m
author Jens Alfke <jens@mooseyard.com>
Wed Jun 03 17:22:42 2009 -0700 (2009-06-03)
changeset 18 a06e44b9b898
parent 16 c409dbc4f068
child 19 f6c91b9da05b
permissions -rw-r--r--
Fixed DEREncoder test case to use the test self-signed cert, not the iphone dev cert, which doesn't pass the test case yet.
     1 //
     2 //  MYASN1Object.m
     3 //  MYCrypto-iPhone
     4 //
     5 //  Created by Jens Alfke on 5/28/09.
     6 //  Copyright 2009 Jens Alfke. All rights reserved.
     7 //
     8 
     9 #import "MYASN1Object.h"
    10 
    11 
    12 @implementation MYASN1Object
    13 
    14 
    15 - (id) initWithTag: (uint32_t)tag
    16            ofClass: (uint8_t)tagClass 
    17        constructed: (BOOL)constructed
    18              value: (NSData*)value
    19 {
    20     Assert(value);
    21     self = [super init];
    22     if (self != nil) {
    23         _tag = tag;
    24         _tagClass = tagClass;
    25         _constructed = constructed;
    26         _value = [value copy];
    27     }
    28     return self;
    29 }
    30 
    31 - (id) initWithTag: (uint32_t)tag
    32            ofClass: (uint8_t)tagClass 
    33         components: (NSArray*)components
    34 {
    35     Assert(components);
    36     self = [super init];
    37     if (self != nil) {
    38         _tag = tag;
    39         _tagClass = tagClass;
    40         _constructed = YES;
    41         _components = [components copy];
    42     }
    43     return self;
    44 }
    45 
    46 - (void) dealloc
    47 {
    48     [_value release];
    49     [_components release];
    50     [super dealloc];
    51 }
    52 
    53 
    54 @synthesize tag=_tag, tagClass=_tagClass, constructed=_constructed, value=_value, components=_components;
    55 
    56 
    57 - (NSString*)description {
    58     if (_components)
    59         return $sprintf(@"%@[%hhu/%u/%u]%@", self.class, _tagClass,(unsigned)_constructed,_tag, _components);
    60     else
    61         return $sprintf(@"%@[%hhu/%u/%u, %u bytes]", self.class, _tagClass,(unsigned)_constructed,_tag, _value.length);
    62 }
    63 
    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);
    73         } else
    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"];
    81         else
    82             [output appendFormat: @"%@:\n", [object class]];
    83         NSString *subindent = [indent stringByAppendingString: @"    "];
    84         for (id o in object)
    85             dump(o,output, subindent);
    86     } else {
    87         [output appendFormat: @"%@%@\n", indent, object];
    88     }
    89 }
    90 
    91 + (NSString*) dump: (id)object {
    92     NSMutableString *output = [NSMutableString stringWithCapacity: 512];
    93     dump(object,output,@"");
    94     return output;
    95 }
    96 
    97 
    98 @end
    99 
   100 
   101 
   102 @implementation MYASN1BigInteger
   103 
   104 @end
   105 
   106 
   107 
   108 @implementation MYBitString
   109 
   110 
   111 - (id)initWithBits: (NSData*)bits count: (unsigned)bitCount;
   112 {
   113     Assert(bits);
   114     Assert(bitCount <= 8*bits.length);
   115     self = [super init];
   116     if (self != nil) {
   117         _bits = [bits copy];
   118         _bitCount = bitCount;
   119     }
   120     return self;
   121 }
   122 
   123 - (void) dealloc
   124 {
   125     [_bits release];
   126     [super dealloc];
   127 }
   128 
   129 @synthesize bits=_bits, bitCount=_bitCount;
   130 
   131 - (NSString*) description {
   132     return $sprintf(@"%@%@", [self class], _bits);
   133 }
   134 
   135 @end