Sample code for 30+ languages & platforms
Objective-C

Get a JWS Unprotected Header

See more JSON Web Signatures (JWS) Examples

Demonstrates Jws.GetUnprotectedH, which copies the optional unprotected header of a signature into a JsonObject.

Background. The unprotected header is present only in JSON serialization forms that carry one. It is not covered by the signature.

Chilkat Objective-C Downloads

Objective-C
#import <CkoJws.h>
#import <NSString.h>
#import <CkoJsonObject.h>

BOOL success = NO;

CkoJws *jws = [[CkoJws alloc] init];

//  Load the JWS compact serialization.
NSString *jwsCompact = @"eyJhbGciOiJIUzI1NiJ9.VGhpcyBpcyB0aGUgY29udGVudCB0byBzaWduLg.<signature>";
success = [jws LoadJws: jwsCompact];
if (success == NO) {
    NSLog(@"%@",jws.LastErrorText);
    return;
}

//  Copy the optional unprotected header of signature 0 into a JsonObject.  This applies to JWS in a
//  JSON serialization form that carries an unprotected header.
CkoJsonObject *json = [[CkoJsonObject alloc] init];
success = [jws GetUnprotectedH: [NSNumber numberWithInt: 0] json: json];
if (success == NO) {
    NSLog(@"%@",jws.LastErrorText);
    return;
}

json.EmitCompact = NO;
NSLog(@"%@",[json Emit]);