0

我一直在尝试为 API 请求生成身份验证,如下所示:base64(sha256(payload+secret))

我一直在使用以下代码,但生成的 base64 字符串不正确。

- (void)viewDidLoad
{
[super viewDidLoad];
NSString *data = @"{"
    @"\"testing\":{"
    @"\"uri\":\"https://example.com/something.php\","
    @"\"id\":\"0\""
    @"}"
    @"}";
NSString *key = @"secret";
NSString *hashString = [NSString stringWithFormat:@"%@%@",data,key];
const char *cKey = [hashString cStringUsingEncoding:NSUTF8StringEncoding];
NSData *sdata = [NSData dataWithBytes:cKey length:hashString.length];
unsigned char sHMAC[64];
CC_SHA256((__bridge const void *)(sdata), sdata.length, sHMAC);
NSData *hash = [[NSData alloc] initWithBytes:sHMAC length:sizeof(sHMAC)];
NSString *s = [self base64forData:hash];
NSLog(@"Authentication: %@",s);
}

//Base64 encoding
- (NSString*)base64forData:(NSData*)theData {
const uint8_t* input = (const uint8_t*)[theData bytes];
NSInteger length = [theData length];

static char table[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";

NSMutableData* data = [NSMutableData dataWithLength:((length + 2) / 3) * 4];
uint8_t* output = (uint8_t*)data.mutableBytes;

NSInteger i;
for (i=0; i < length; i += 3) {
    NSInteger value = 0;
    NSInteger j;
    for (j = i; j < (i + 3); j++) {
        value <<= 8;

        if (j < length) {
            value |= (0xFF & input[j]);
        }
    }

    NSInteger theIndex = (i / 3) * 4;
    output[theIndex + 0] = table[(value >> 18) & 0x3F];
    output[theIndex + 1] = table[(value >> 12) & 0x3F];
    output[theIndex + 2] = (i + 1) < length ? table[(value >> 6) & 0x3F] : '=';
    output[theIndex + 3] = (i + 2) < length ? table[(value >> 0) & 0x3F] : '=';
}

return [[NSString alloc] initWithData:data encoding:NSASCIIStringEncoding];
}

我已经为此苦苦挣扎了几个星期。感谢您的热心帮助!

4

1 回答 1

1

您的 JSON 字典中有一个额外的逗号。也许这搞砸了?

另外,请注意您的hashString外观如下所示:

{"testing":{"uri":"https://example.com/something.php","id":"0",}}secret

这是故意的吗?

此外,对于您的传统 c 代码,它已经全部完成。参见例如这个答案

于 2013-07-15T16:11:42.087 回答