12345678910111213141516171819202122 |
- //
- // 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
|