MYASN1Object.h
author Jens Alfke <jens@mooseyard.com>
Wed Jun 03 17:22:42 2009 -0700 (2009-06-03)
changeset 18 a06e44b9b898
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.
jens@16
     1
//
jens@16
     2
//  MYASN1Object.h
jens@16
     3
//  MYCrypto-iPhone
jens@16
     4
//
jens@16
     5
//  Created by Jens Alfke on 5/28/09.
jens@16
     6
//  Copyright 2009 Jens Alfke. All rights reserved.
jens@16
     7
//
jens@16
     8
jens@16
     9
#import <Foundation/Foundation.h>
jens@16
    10
jens@16
    11
jens@16
    12
/** A generic ASN.1 data value. The BER parser instantiates these to represent parsed values that
jens@16
    13
    it doesn't know how to represent otherwise. */
jens@16
    14
@interface MYASN1Object : NSObject
jens@16
    15
{
jens@16
    16
    @private
jens@16
    17
    uint32_t _tag;
jens@16
    18
    uint8_t _tagClass;
jens@16
    19
    BOOL _constructed;
jens@16
    20
    NSData *_value;
jens@16
    21
    NSArray *_components;
jens@16
    22
}
jens@16
    23
jens@16
    24
- (id) initWithTag: (uint32_t)tag
jens@16
    25
           ofClass: (uint8_t)tagClass 
jens@16
    26
       constructed: (BOOL)constructed
jens@16
    27
             value: (NSData*)value;
jens@16
    28
- (id) initWithTag: (uint32_t)tag
jens@16
    29
           ofClass: (uint8_t)tagClass 
jens@16
    30
        components: (NSArray*)components;
jens@16
    31
jens@16
    32
@property (readonly) uint32_t tag;
jens@16
    33
@property (readonly) uint8_t tagClass;
jens@16
    34
@property (readonly) BOOL constructed;
jens@16
    35
@property (readonly) NSData *value;
jens@16
    36
@property (readonly) NSArray *components;
jens@16
    37
jens@16
    38
+ (NSString*) dump: (id)object;
jens@16
    39
jens@16
    40
@end
jens@16
    41
jens@16
    42
jens@16
    43
/** An ASN.1 "big" (arbitrary-length) integer.
jens@16
    44
    The value contains the bytes of the integer, in big-endian order. */
jens@16
    45
@interface MYASN1BigInteger : MYASN1Object
jens@16
    46
@end
jens@16
    47
jens@16
    48
jens@16
    49
/** An ordered string of bits, as used in ASN.1.
jens@16
    50
    This differs from NSData in that it need not occupy a whole number of bytes;
jens@16
    51
    that is, the number of bits need not be a multiple of 8. */
jens@16
    52
@interface MYBitString : NSObject 
jens@16
    53
{
jens@16
    54
    NSData *_bits;
jens@16
    55
    NSUInteger _bitCount;
jens@16
    56
}
jens@16
    57
jens@16
    58
- (id)initWithBits: (NSData*)bits count: (NSUInteger)bitCount;
jens@16
    59
jens@16
    60
@property (readonly, nonatomic) NSData *bits;
jens@16
    61
@property (readonly, nonatomic) NSUInteger bitCount;
jens@16
    62
jens@16
    63
@end