MYOID.h
author Jens Alfke <jens@mooseyard.com>
Wed Jun 03 17:20:53 2009 -0700 (2009-06-03)
changeset 17 90a70925562b
child 19 f6c91b9da05b
permissions -rw-r--r--
Added MYParsedCertificate, for working with the innards of X.509 certs. Currently it can parse cert data, extract the public key, and verify the signature. More to come.
     1 //
     2 //  MYOID.h
     3 //  MYCrypto
     4 //
     5 //  Created by Jens Alfke on 5/28/09.
     6 //  Copyright 2009 Jens Alfke. All rights reserved.
     7 //
     8 
     9 #import <Cocoa/Cocoa.h>
    10 
    11 
    12 /** An ASN.1 Object-ID, which is a sequence of integer components that define namespaces. */
    13 @interface MYOID : NSObject <NSCopying>
    14 {
    15     NSData *_data;
    16 }
    17 
    18 - (id) initWithComponents: (const UInt32*)components count: (unsigned)componentCount;
    19 - (id) initWithBEREncoding: (NSData*)encoding;
    20 - (NSData*) DEREncoding;
    21 
    22 - (const UInt32*) components;
    23 - (unsigned) componentCount;
    24 
    25 @end