You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
742 B
22 lines
742 B
//
|
|
// APBBisRequestBuilder.h
|
|
// BioAuthEngine
|
|
//
|
|
// Created by 晗羽 on 21/04/2018.
|
|
// Copyright © 2018 DTF. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <BioAuthEngine/APBBisUploadGwRequest.h>
|
|
#import <BioAuthEngine/APBBehavLogModel.h>
|
|
|
|
@interface APBBisRequestBuilder : NSObject
|
|
|
|
+(APBBisUploadGwRequest *) buildRequestwithpubKey:(NSString *) pubKey
|
|
token:(NSString *) bistoken
|
|
contentData:(NSString *)content
|
|
behaveLog:(BisBehavLog *)behavlog
|
|
andCypherData:(NSString *) aesKeyData
|
|
encrypt:(BOOL) encrypt;
|
|
|
|
@end
|