ecency-mobile/ios/Pods/JWT/Core/ClaimSet/JWTClaimsSetVerifier.h
2019-01-22 23:02:15 +02:00

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