forked from roddi/ValidateStoreReceipt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
validatereceipt.m
672 lines (547 loc) · 19.7 KB
/
validatereceipt.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
//
// validatereceipt.m
//
// Created by Ruotger Skupin on 23.10.10.
// Copyright 2010-2011 Matthew Stevens, Ruotger Skupin, Apple, Dave Carlton, Fraser Hess, anlumo, David Keegan, Alessandro Segala. All rights reserved.
//
/*
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the distribution.
Neither the name of the copyright holders nor the names of its contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#import "validatereceipt.h"
// link with Foundation.framework, IOKit.framework, Security.framework and libCrypto (via -lcrypto in Other Linker Flags)
#import <IOKit/IOKitLib.h>
#import <Foundation/Foundation.h>
#import <Security/Security.h>
#include <openssl/pkcs7.h>
#include <openssl/objects.h>
#include <openssl/sha.h>
#include <openssl/x509.h>
#include <openssl/err.h>
//#define USE_SAMPLE_RECEIPT // also defined in the debug build settings
#ifdef USE_SAMPLE_RECEIPT
#warning ******* USES SAMPLE RECEIPT! *******
#endif
#ifndef YES_I_HAVE_READ_THE_WARNING_AND_I_ACCEPT_THE_RISK
#warning --- DON'T USE THIS CODE AS IS! IF EVERYONE USES THE SAME CODE
#warning --- IT IS PRETTY EASY TO BUILD AN AUTOMATIC CRACKING TOOL
#warning --- FOR APPS USING THIS CODE!
#warning --- BY USING THIS CODE YOU ACCEPT TAKING THE RESPONSIBILITY FOR
#warning --- ANY DAMAGE!
#warning ---
#warning --- YOU HAVE BEEN WARNED!
// if you want to take that risk, add "-DYES_I_HAVE_READ_THE_WARNING_AND_I_ACCEPT_THE_RISK" in the build settings at "Other C Flags"
#endif // YES_I_HAVE_READ_THE_WARNING_AND_I_ACCEPT_THE_RISK
#define VRCFRelease(object) if(object) CFRelease(object)
NSString *kReceiptBundleIdentifier = @"BundleIdentifier";
NSString *kReceiptBundleIdentifierData = @"BundleIdentifierData";
NSString *kReceiptVersion = @"Version";
NSString *kReceiptOpaqueValue = @"OpaqueValue";
NSString *kReceiptHash = @"Hash";
NSString *kReceiptInApp = @"InApp";
NSString *kReceiptInAppQuantity = @"Quantity";
NSString *kReceiptInAppProductIdentifier = @"ProductIdentifier";
NSString *kReceiptInAppTransactionIdentifier = @"TransactionIdentifier";
NSString *kReceiptInAppPurchaseDate = @"PurchaseDate";
NSString *kReceiptInAppOriginalTransactionIdentifier = @"OriginalTransactionIdentifier";
NSString *kReceiptInAppOriginalPurchaseDate = @"OriginalPurchaseDate";
NSData * appleRootCert(void)
{
OSStatus status;
SecKeychainRef keychain = nil;
status = SecKeychainOpen("/System/Library/Keychains/SystemRootCertificates.keychain", &keychain);
if(status){
VRCFRelease(keychain);
return nil;
}
CFArrayRef searchList = CFArrayCreate(kCFAllocatorDefault, (const void**)&keychain, 1, &kCFTypeArrayCallBacks);
// For some reason we get a malloc reference underflow warning message when garbage collection
// is on. Perhaps a bug in SecKeychainOpen where the keychain reference isn't actually retained
// in GC?
#ifndef __OBJC_GC__
VRCFRelease(keychain);
#endif
SecKeychainSearchRef searchRef = nil;
status = SecKeychainSearchCreateFromAttributes(searchList, kSecCertificateItemClass, NULL, &searchRef);
if(status){
VRCFRelease(searchRef);
VRCFRelease(searchList);
return nil;
}
SecKeychainItemRef itemRef = nil;
NSData * resultData = nil;
while(SecKeychainSearchCopyNext(searchRef, &itemRef) == noErr && resultData == nil) {
// Grab the name of the certificate
SecKeychainAttributeList list;
SecKeychainAttribute attributes[1];
attributes[0].tag = kSecLabelItemAttr;
list.count = 1;
list.attr = attributes;
SecKeychainItemCopyContent(itemRef, nil, &list, nil, nil);
NSData *nameData = [NSData dataWithBytesNoCopy:attributes[0].data length:attributes[0].length freeWhenDone:NO];
NSString *name = [[NSString alloc] initWithData:nameData encoding:NSUTF8StringEncoding];
if([name isEqualToString:@"Apple Root CA"]) {
CSSM_DATA certData;
SecCertificateGetData((SecCertificateRef)itemRef, &certData);
resultData = [NSData dataWithBytes:certData.Data length:certData.Length];
}
SecKeychainItemFreeContent(&list, NULL);
if (itemRef)
VRCFRelease(itemRef);
[name release];
}
VRCFRelease(searchList);
VRCFRelease(searchRef);
return resultData;
}
NSArray * parseInAppPurchasesData(NSData * inappData)
{
#define INAPP_ATTR_START 1700
#define INAPP_QUANTITY 1701
#define INAPP_PRODID 1702
#define INAPP_TRANSID 1703
#define INAPP_PURCHDATE 1704
#define INAPP_ORIGTRANSID 1705
#define INAPP_ORIGPURCHDATE 1706
#define INAPP_ATTR_END 1707
int type = 0;
int xclass = 0;
long length = 0;
NSUInteger dataLenght = [inappData length];
const uint8_t *p = [inappData bytes];
const uint8_t *end = p + dataLenght;
NSMutableArray *resultArray = [NSMutableArray array];
while (p < end)
{
ASN1_get_object(&p, &length, &type, &xclass, end - p);
const uint8_t *set_end = p + length;
if(type != V_ASN1_SET) {
break;
}
NSMutableDictionary *item = [[NSMutableDictionary alloc] initWithCapacity:6];
while (p < set_end) {
ASN1_get_object(&p, &length, &type, &xclass, set_end - p);
if (type != V_ASN1_SEQUENCE)
break;
const uint8_t *seq_end = p + length;
int attr_type = 0;
int attr_version = 0;
// Attribute type
ASN1_get_object(&p, &length, &type, &xclass, seq_end - p);
if (type == V_ASN1_INTEGER) {
if(length == 1) {
attr_type = p[0];
}
else if(length == 2) {
attr_type = p[0] * 0x100 + p[1]
;
}
}
p += length;
// Attribute version
ASN1_get_object(&p, &length, &type, &xclass, seq_end - p);
if (type == V_ASN1_INTEGER && length == 1) {
// clang analyser hit (wontfix at the moment, since the code might come in handy later)
// But if someone has a convincing case throwing that out, I might do so, Roddi
attr_version = p[0];
}
p += length;
// Only parse attributes we're interested in
if (attr_type > INAPP_ATTR_START && attr_type < INAPP_ATTR_END) {
NSString *key = nil;
ASN1_get_object(&p, &length, &type, &xclass, seq_end - p);
if (type == V_ASN1_OCTET_STRING) {
//NSData *data = [NSData dataWithBytes:p length:(NSUInteger)length];
// Integers
if(attr_type == INAPP_QUANTITY) {
int num_type = 0;
long num_length = 0;
const uint8_t *num_p = p;
ASN1_get_object(&num_p, &num_length, &num_type, &xclass, seq_end - num_p);
if(num_type == V_ASN1_INTEGER) {
NSUInteger quantity = 0;
if(num_length) {
quantity += num_p[0];
if(num_length > 1) {
quantity += num_p[1] * 0x100;
if(num_length > 2) {
quantity += num_p[2] * 0x10000;
if(num_length > 3) {
quantity += num_p[3] * 0x1000000;
}
}
}
}
NSNumber *num = [[NSNumber alloc] initWithUnsignedInteger:quantity];
[item setObject:num forKey:kReceiptInAppQuantity];
[num release];
}
}
// Strings
if (attr_type == INAPP_PRODID ||
attr_type == INAPP_TRANSID ||
attr_type == INAPP_ORIGTRANSID ||
attr_type == INAPP_PURCHDATE ||
attr_type == INAPP_ORIGPURCHDATE) {
int str_type = 0;
long str_length = 0;
const uint8_t *str_p = p;
ASN1_get_object(&str_p, &str_length, &str_type, &xclass, seq_end - str_p);
if (str_type == V_ASN1_UTF8STRING) {
switch (attr_type) {
case INAPP_PRODID:
key = kReceiptInAppProductIdentifier;
break;
case INAPP_TRANSID:
key = kReceiptInAppTransactionIdentifier;
break;
case INAPP_ORIGTRANSID:
key = kReceiptInAppOriginalTransactionIdentifier;
break;
}
if (key) {
NSString *string = [[NSString alloc] initWithBytes:str_p
length:(NSUInteger)str_length
encoding:NSUTF8StringEncoding];
[item setObject:string forKey:key];
[string release];
}
}
if (str_type == V_ASN1_IA5STRING) {
switch (attr_type) {
case INAPP_PURCHDATE:
key = kReceiptInAppPurchaseDate;
break;
case INAPP_ORIGPURCHDATE:
key = kReceiptInAppOriginalPurchaseDate;
break;
}
if (key) {
NSString *string = [[NSString alloc] initWithBytes:str_p
length:(NSUInteger)str_length
encoding:NSASCIIStringEncoding];
[item setObject:string forKey:key];
[string release];
}
}
}
}
p += length;
}
// Skip any remaining fields in this SEQUENCE
while (p < seq_end) {
ASN1_get_object(&p, &length, &type, &xclass, seq_end - p);
p += length;
}
}
// Skip any remaining fields in this SET
while (p < set_end) {
ASN1_get_object(&p, &length, &type, &xclass, set_end - p);
p += length;
}
[resultArray addObject:item];
[item release];
}
return resultArray;
}
NSDictionary * dictionaryWithAppStoreReceipt(NSString * path)
{
NSData * rootCertData = appleRootCert();
#define ATTR_START 1
#define BUNDLE_ID 2
#define VERSION 3
#define OPAQUE_VALUE 4
#define HASH 5
#define ATTR_END 6
#define INAPP_PURCHASE 17
ERR_load_PKCS7_strings();
ERR_load_X509_strings();
OpenSSL_add_all_digests();
// Expected input is a PKCS7 container with signed data containing
// an ASN.1 SET of SEQUENCE structures. Each SEQUENCE contains
// two INTEGERS and an OCTET STRING.
const char * receiptPath = [[path stringByStandardizingPath] fileSystemRepresentation];
FILE *fp = fopen(receiptPath, "rb");
if (fp == NULL)
return nil;
PKCS7 *p7 = d2i_PKCS7_fp(fp, NULL);
fclose(fp);
// Check if the receipt file was invalid (otherwise we go crashing and burning)
if (p7 == NULL) {
return nil;
}
if (!PKCS7_type_is_signed(p7)) {
PKCS7_free(p7);
return nil;
}
if (!PKCS7_type_is_data(p7->d.sign->contents)) {
PKCS7_free(p7);
return nil;
}
int verifyReturnValue = 0;
X509_STORE *store = X509_STORE_new();
if (store)
{
const uint8_t *data = (uint8_t *)(rootCertData.bytes);
X509 *appleCA = d2i_X509(NULL, &data, (long)rootCertData.length);
if (appleCA)
{
BIO *payload = BIO_new(BIO_s_mem());
X509_STORE_add_cert(store, appleCA);
if (payload)
{
verifyReturnValue = PKCS7_verify(p7,NULL,store,NULL,payload,0);
BIO_free(payload);
}
// this code will come handy when the first real receipts arrive
#ifdef DEBUG
unsigned long err = ERR_get_error();
if(err)
printf("%lu: %s\n",err,ERR_error_string(err,NULL));
else {
STACK_OF(X509) *stack = PKCS7_get0_signers(p7, NULL, 0);
for(NSUInteger i = 0; i < sk_num(stack); i++) {
const X509 *signer = (X509*)sk_value(stack, i);
NSLog(@"name = %s", signer->name);
}
}
#endif
X509_free(appleCA);
}
X509_STORE_free(store);
}
EVP_cleanup();
if (verifyReturnValue != 1)
{
PKCS7_free(p7);
return nil;
}
ASN1_OCTET_STRING *octets = p7->d.sign->contents->d.data;
const uint8_t *p = octets->data;
const uint8_t *end = p + octets->length;
int type = 0;
int xclass = 0;
long length = 0;
ASN1_get_object(&p, &length, &type, &xclass, end - p);
if (type != V_ASN1_SET) {
PKCS7_free(p7);
return nil;
}
NSMutableDictionary *info = [NSMutableDictionary dictionary];
while (p < end) {
ASN1_get_object(&p, &length, &type, &xclass, end - p);
if (type != V_ASN1_SEQUENCE)
break;
const uint8_t *seq_end = p + length;
int attr_type = 0;
int attr_version = 0;
// Attribute type
ASN1_get_object(&p, &length, &type, &xclass, seq_end - p);
if (type == V_ASN1_INTEGER && length == 1) {
attr_type = p[0];
}
p += length;
// Attribute version
ASN1_get_object(&p, &length, &type, &xclass, seq_end - p);
if (type == V_ASN1_INTEGER && length == 1) {
attr_version = p[0];
attr_version = attr_version;
}
p += length;
// Only parse attributes we're interested in
if ((attr_type > ATTR_START && attr_type < ATTR_END) || attr_type == INAPP_PURCHASE) {
NSString *key = nil;
ASN1_get_object(&p, &length, &type, &xclass, seq_end - p);
if (type == V_ASN1_OCTET_STRING) {
NSData *data = [NSData dataWithBytes:p length:(NSUInteger)length];
// Bytes
if (attr_type == BUNDLE_ID || attr_type == OPAQUE_VALUE || attr_type == HASH) {
switch (attr_type) {
case BUNDLE_ID:
// This is included for hash generation
key = kReceiptBundleIdentifierData;
break;
case OPAQUE_VALUE:
key = kReceiptOpaqueValue;
break;
case HASH:
key = kReceiptHash;
break;
}
if (key) {
[info setObject:data forKey:key];
}
}
// Strings
if (attr_type == BUNDLE_ID || attr_type == VERSION) {
int str_type = 0;
long str_length = 0;
const uint8_t *str_p = p;
ASN1_get_object(&str_p, &str_length, &str_type, &xclass, seq_end - str_p);
if (str_type == V_ASN1_UTF8STRING) {
switch (attr_type) {
case BUNDLE_ID:
key = kReceiptBundleIdentifier;
break;
case VERSION:
key = kReceiptVersion;
break;
}
if (key) {
NSString *string = [[NSString alloc] initWithBytes:str_p
length:(NSUInteger)str_length
encoding:NSUTF8StringEncoding];
[info setObject:string forKey:key];
[string release];
}
}
}
// In-App purchases
if (attr_type == INAPP_PURCHASE)
{
NSArray *inApp = parseInAppPurchasesData(data);
[info setObject:inApp forKey:kReceiptInApp];
}
}
p += length;
}
// Skip any remaining fields in this SEQUENCE
while (p < seq_end) {
ASN1_get_object(&p, &length, &type, &xclass, seq_end - p);
p += length;
}
}
PKCS7_free(p7);
return info;
}
// Returns a CFData object, containing the machine's GUID.
CFDataRef copy_mac_address(void)
{
kern_return_t kernResult;
mach_port_t master_port;
CFMutableDictionaryRef matchingDict;
io_iterator_t iterator;
io_object_t service;
CFDataRef macAddress = nil;
kernResult = IOMasterPort(MACH_PORT_NULL, &master_port);
if (kernResult != KERN_SUCCESS) {
printf("IOMasterPort returned %d\n", kernResult);
return nil;
}
matchingDict = IOBSDNameMatching(master_port, 0, "en0");
if(!matchingDict) {
printf("IOBSDNameMatching returned empty dictionary\n");
return nil;
}
kernResult = IOServiceGetMatchingServices(master_port, matchingDict, &iterator);
if (kernResult != KERN_SUCCESS) {
printf("IOServiceGetMatchingServices returned %d\n", kernResult);
return nil;
}
while((service = IOIteratorNext(iterator)) != 0)
{
io_object_t parentService;
kernResult = IORegistryEntryGetParentEntry(service, kIOServicePlane, &parentService);
if(kernResult == KERN_SUCCESS)
{
VRCFRelease(macAddress);
macAddress = IORegistryEntryCreateCFProperty(parentService, CFSTR("IOMACAddress"), kCFAllocatorDefault, 0);
IOObjectRelease(parentService);
}
else {
printf("IORegistryEntryGetParentEntry returned %d\n", kernResult);
}
IOObjectRelease(service);
}
return macAddress;
}
NSArray* obtainInAppPurchases(NSString *receiptPath)
{
// According to the documentation, we need to validate the receipt first.
// If the receipt is not valid, no In-App purchase is valid.
// This performs a "quick" validation. Please use validateReceiptAtPath to perform a full validation.
NSDictionary * receipt = dictionaryWithAppStoreReceipt(receiptPath);
if (!receipt)
return nil;
NSArray *purchases = [receipt objectForKey:kReceiptInApp];
if(!purchases || ![purchases isKindOfClass:[NSArray class]])
return nil;
return purchases;
}
extern const NSString * global_bundleVersion;
extern const NSString * global_bundleIdentifier;
// in your project define those two somewhere as such:
// const NSString * global_bundleVersion = @"1.0.2";
// const NSString * global_bundleIdentifier = @"com.example.SampleApp";
BOOL validateReceiptAtPath(NSString * path)
{
// it turns out, it's a bad idea, to use these two NSBundle methods in your app:
//
// bundleVersion = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"];
// bundleIdentifier = [[NSBundle mainBundle] bundleIdentifier];
//
// http://www.craftymind.com/2011/01/06/mac-app-store-hacked-how-developers-can-better-protect-themselves/
//
// so use hard coded values instead (probably even somehow obfuscated)
// analyser warning when USE_SAMPLE_RECEIPT is defined (wontfix)
NSString *gVersion = (NSString*)global_bundleVersion;
NSString *gIdentifier = (NSString*)global_bundleIdentifier;
#ifndef USE_SAMPLE_RECEIPT
// avoid making stupid mistakes --> check again
NSString *bVersion = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"];
NSString *bBundle = [[NSBundle mainBundle] bundleIdentifier];
NSCAssert([gVersion isEqualToString: bVersion],
@"hard-coded CFBundleShortVersionString: %@ != bundle version %@", gVersion, bVersion);
NSCAssert([gIdentifier isEqualToString: bBundle],
@"hard-coded bundle identifier %@ != bundle id %@", gIdentifier, bBundle);
#else
bundleVersion = @"1.0.2";
bundleIdentifier = @"com.example.SampleApp";
#endif
NSDictionary * receipt = dictionaryWithAppStoreReceipt(path);
if (!receipt)
return NO;
NSData * guidData = nil;
#ifndef USE_SAMPLE_RECEIPT
guidData = (NSData*)copy_mac_address();
if ([NSGarbageCollector defaultCollector])
[[NSGarbageCollector defaultCollector] enableCollectorForPointer:guidData];
else
[guidData autorelease];
if (!guidData)
return NO;
#else
// Overwrite with example GUID for use with example receipt
unsigned char guid[] = { 0x00, 0x17, 0xf2, 0xc4, 0xbc, 0xc0 };
guidData = [NSData dataWithBytes:guid length:sizeof(guid)];
#endif
NSMutableData *input = [NSMutableData data];
[input appendData:guidData];
[input appendData:[receipt objectForKey:kReceiptOpaqueValue]];
[input appendData:[receipt objectForKey:kReceiptBundleIdentifierData]];
NSMutableData *hash = [NSMutableData dataWithLength:SHA_DIGEST_LENGTH];
SHA1([input bytes], [input length], [hash mutableBytes]);
NSString *receiptBundle = [receipt objectForKey:kReceiptBundleIdentifier];
NSString *receiptVersion = [receipt objectForKey:kReceiptVersion];
if ([gIdentifier isEqualToString:receiptBundle] &&
[gVersion isEqualToString:receiptVersion] &&
[hash isEqualToData:[receipt objectForKey:kReceiptHash]])
{
return YES;
}
#ifdef DEBUG
NSLog(@"bundle id: %@ receipt id: %@", gIdentifier, receiptBundle );
NSLog(@"bundle version: %@ receipt version: %@", gVersion, receiptVersion );
#endif
return NO;
}