17 lines
324 B
Objective-C
17 lines
324 B
Objective-C
//
|
|
// JWTDecoder.h
|
|
// Helios
|
|
//
|
|
// Created by Tyler Kuster on 3/2/17.
|
|
// Copyright © 2017 Tyler Kuster. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface JWTDecoder : NSObject
|
|
|
|
+ (NSDictionary*)decodeJWTToken:(NSString*)jwtToken;
|
|
+ (NSString*)expirationEpochFromJWTToken:(NSString*)jwtToken;
|
|
|
|
@end
|