cdts/xdts-ios 3/TreeHole/Code/Features/Login/JWTDecoder/JWTDecoder.h
2023-07-27 09:20:00 +08:00

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