MYCertificate now checks validity of self-signed certs loaded from the keychain (because the Security framework doesn't validate self-signed certs.)
5 // Created by Jens Alfke on 5/28/09.
6 // Copyright 2009 Jens Alfke. All rights reserved.
15 - (id) initWithComponents: (const UInt32*)components count: (unsigned)count
19 _data = [[NSData alloc] initWithBytes: components length: count*sizeof(UInt32)];
24 - (id) initWithBEREncoding: (NSData*)encoding
28 size_t len = encoding.length;
29 const UInt8 *src = encoding.bytes;
30 const UInt8 *end = src+len;
31 NSMutableData *data = [NSMutableData dataWithLength: (len+1)*sizeof(UInt32)];
32 UInt32* dst = data.mutableBytes;
48 component = (component << 7) | (byte & 0x7F);
52 data.length = (UInt8*)dst - (UInt8*)data.mutableBytes;
58 + (MYOID*) OIDWithEncoding: (NSData*)encoding {
59 return [[[self alloc] initWithBEREncoding: encoding] autorelease];
63 + (MYOID*) OIDFromCSSM: (CSSM_OID)cssmOid
65 NSData *ber = [[NSData alloc] initWithBytesNoCopy: cssmOid.Data length: cssmOid.Length freeWhenDone: NO];
66 MYOID *oid = [[[self alloc] initWithBEREncoding: ber] autorelease];
73 - (id) copyWithZone: (NSZone*)zone {
84 - (NSString*) description {
85 NSMutableString *desc = [NSMutableString stringWithString: @"{"];
86 const UInt32* components = self.components;
87 unsigned count = self.componentCount;
88 for (unsigned i=0; i<count; i++) {
90 [desc appendString: @" "];
91 [desc appendFormat: @"%u", components[i]];
93 [desc appendString: @"}"];
98 - (NSData*) componentData {return _data;}
99 - (const UInt32*) components {return (const UInt32*)_data.bytes;}
100 - (unsigned) componentCount {return _data.length / sizeof(UInt32);}
106 - (BOOL)isEqual:(id)object {
107 return [object isKindOfClass: [MYOID class]] && [_data isEqual: [object componentData]];
111 - (NSData*) DEREncoding {
112 unsigned count = self.componentCount;
113 UInt8 encoding[5*count]; // worst-case size
114 const UInt32 *src=self.components, *end=src+count;
115 UInt8 *dst = encoding;
116 if (count >= 2 && src[0]<=3 && src[1]<40) {
117 // Weird collapsing of 1st two components into one byte:
118 *dst++ = src[0]*40 + src[1];
122 UInt32 component = *src++;
123 // Write the component in 7-bit groups, most significant first:
125 for (int shift=28; shift>=0; shift -= 7) {
126 UInt8 byte = (component >> shift) & 0x7F;
135 return [NSData dataWithBytes: encoding length: dst-encoding];
143 #define $data(BYTES...) ({const uint8_t bytes[] = {BYTES}; [NSData dataWithBytes: bytes length: sizeof(bytes)];})
145 #define $components(INTS...) ({const UInt32 components[] = {INTS}; components;})
148 CAssertEqual([[MYOID OIDWithEncoding: $data(0x2a,0x86,0x48,0x86,0xf7,0x0d,0x01,0x01,0x01)] description],
149 @"{1 2 840 113549 1 1 1}");
150 CAssertEqual([[MYOID OIDWithEncoding: $data(0x55,0x04,0x04)] description],
152 CAssertEqual([[MYOID OIDWithEncoding: $data(0x2a,0x86,0x48,0x86,0xf7,0x0d,0x01,0x09,0x01)] description],
153 @"{1 2 840 113549 1 9 1}");
155 CAssertEqual([[[MYOID alloc] initWithComponents: $components(1,2,840,113549,1,1,1) count: 7] description],
156 @"{1 2 840 113549 1 1 1}");
158 CAssertEqual([[[MYOID alloc] initWithComponents: $components(1,2,840,113549,1,1,1) count: 7] DEREncoding],
159 $data(0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01));
160 CAssertEqual([[[MYOID alloc] initWithComponents: $components(2,5,4,4) count: 4] DEREncoding],
161 $data(0x55,0x04,0x04));
167 Copyright (c) 2009, Jens Alfke <jens@mooseyard.com>. All rights reserved.
169 Redistribution and use in source and binary forms, with or without modification, are permitted
170 provided that the following conditions are met:
172 * Redistributions of source code must retain the above copyright notice, this list of conditions
173 and the following disclaimer.
174 * Redistributions in binary form must reproduce the above copyright notice, this list of conditions
175 and the following disclaimer in the documentation and/or other materials provided with the
178 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
179 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
180 FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRI-
181 BUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
182 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
183 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
184 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
185 THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.