mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-23 21:35:04 +03:00
19 lines
485 B
Objective-C
19 lines
485 B
Objective-C
//
|
|
// JWTClaimsSetVerifier.h
|
|
// JWT
|
|
//
|
|
// Created by Lobanov Dmitry on 13.02.16.
|
|
// Copyright © 2016 Karma. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "JWTClaimsSet.h"
|
|
|
|
@interface JWTClaimsSetVerifier : NSObject
|
|
|
|
+ (BOOL)verifyClaimsSet:(JWTClaimsSet *)theClaimsSet withTrustedClaimsSet:(JWTClaimsSet *)trustedClaimsSet;
|
|
|
|
+ (BOOL)verifyClaimsSetDictionary:(NSDictionary *)theClaimsSetDictionary withTrustedClaimsSet:(JWTClaimsSet *)trustedClaimsSet;
|
|
|
|
@end
|