mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-22 12:51:42 +03:00
20 lines
432 B
Objective-C
20 lines
432 B
Objective-C
//
|
|
// JWTClaimsSetSerializer.h
|
|
// JWT
|
|
//
|
|
// Created by Klaas Pieter Annema on 31-05-13.
|
|
// Copyright (c) 2013 Karma. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "JWTClaimsSet.h"
|
|
|
|
@interface JWTClaimsSetSerializer : NSObject
|
|
|
|
+ (NSArray *)claimsSetKeys;
|
|
+ (NSDictionary *)dictionaryWithClaimsSet:(JWTClaimsSet *)theClaimsSet;
|
|
+ (JWTClaimsSet *)claimsSetWithDictionary:(NSDictionary *)theDictionary;
|
|
|
|
@end
|