mirror of
https://github.com/zhigang1992/react-native-code-push.git
synced 2026-06-11 16:20:26 +08:00
* Add JWT Library to ios project * Add new option PublicKey to Info.plist * Implement code signing mechanism Update JWT library to 3.0.0-beta4 Implement signature verification mechanism * Undo redundant changes * Minor improvements * Minor fixes Add additional checking for specific update situations Fix bugs Refactor method names * Add new dependencies to podspec * Minor improvements Fix log messages
24 lines
752 B
Objective-C
Executable File
24 lines
752 B
Objective-C
Executable File
//
|
|
// JWTClaimsSet.h
|
|
// JWT
|
|
//
|
|
// Created by Klaas Pieter Annema on 31-05-13.
|
|
// Copyright (c) 2013 Karma. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface JWTClaimsSet : NSObject<NSCopying>
|
|
|
|
@property (nonatomic, readwrite, copy) NSString *issuer;
|
|
@property (nonatomic, readwrite, copy) NSString *subject;
|
|
@property (nonatomic, readwrite, copy) NSString *audience;
|
|
@property (nonatomic, readwrite, copy) NSDate *expirationDate;
|
|
@property (nonatomic, readwrite, copy) NSDate *notBeforeDate;
|
|
@property (nonatomic, readwrite, copy) NSDate *issuedAt;
|
|
@property (nonatomic, readwrite, copy) NSString *identifier;
|
|
@property (nonatomic, readwrite, copy) NSString *type;
|
|
@property (nonatomic, readwrite, copy) NSString *scope;
|
|
|
|
@end
|