diff -r 000000000000 -r a06e44b9b898 MYOID.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/MYOID.h Wed Jun 03 17:22:42 2009 -0700 @@ -0,0 +1,25 @@ +// +// MYOID.h +// MYCrypto +// +// Created by Jens Alfke on 5/28/09. +// Copyright 2009 Jens Alfke. All rights reserved. +// + +#import + + +/** An ASN.1 Object-ID, which is a sequence of integer components that define namespaces. */ +@interface MYOID : NSObject +{ + NSData *_data; +} + +- (id) initWithComponents: (const UInt32*)components count: (unsigned)componentCount; +- (id) initWithBEREncoding: (NSData*)encoding; +- (NSData*) DEREncoding; + +- (const UInt32*) components; +- (unsigned) componentCount; + +@end