diff -r 90a70925562b -r f6c91b9da05b MYASN1Object.m --- a/MYASN1Object.m Wed Jun 03 17:20:53 2009 -0700 +++ b/MYASN1Object.m Thu Jun 04 18:36:30 2009 -0700 @@ -61,6 +61,15 @@ return $sprintf(@"%@[%hhu/%u/%u, %u bytes]", self.class, _tagClass,(unsigned)_constructed,_tag, _value.length); } +- (BOOL) isEqual: (id)object { + return [object isKindOfClass: [MYASN1Object class]] + && _tag==[object tag] + && _tagClass==[object tagClass] + && _constructed==[object constructed] + && $equal(_value,[object value]) + && $equal(_components,[object components]); +} + static void dump(id object, NSMutableString *output, NSString *indent) { if ([object isKindOfClass: [MYASN1Object class]]) { MYASN1Object *asn1Obj = object; @@ -108,8 +117,7 @@ @implementation MYBitString -- (id)initWithBits: (NSData*)bits count: (unsigned)bitCount; -{ +- (id)initWithBits: (NSData*)bits count: (unsigned)bitCount { Assert(bits); Assert(bitCount <= 8*bits.length); self = [super init]; @@ -120,6 +128,10 @@ return self; } ++ (MYBitString*) bitStringWithData: (NSData*)bits { + return [[[self alloc] initWithBits: bits count: 8*bits.length] autorelease]; +} + - (void) dealloc { [_bits release]; @@ -132,4 +144,14 @@ return $sprintf(@"%@%@", [self class], _bits); } +- (unsigned) hash { + return _bits.hash ^ _bitCount; +} + +- (BOOL) isEqual: (id)object { + return [object isKindOfClass: [MYBitString class]] + && _bitCount==[object bitCount] + && [_bits isEqual: [object bits]]; +} + @end