洛阳学员端
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

7 months ago
  1. //
  2. // APBBisRequestBuilder.h
  3. // BioAuthEngine
  4. //
  5. // Created by 晗羽 on 21/04/2018.
  6. // Copyright © 2018 DTF. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <BioAuthEngine/APBBisUploadGwRequest.h>
  10. #import <BioAuthEngine/APBBehavLogModel.h>
  11. @interface APBBisRequestBuilder : NSObject
  12. +(APBBisUploadGwRequest *) buildRequestwithpubKey:(NSString *) pubKey
  13. token:(NSString *) bistoken
  14. contentData:(NSString *)content
  15. behaveLog:(BisBehavLog *)behavlog
  16. andCypherData:(NSString *) aesKeyData
  17. encrypt:(BOOL) encrypt;
  18. @end