国内WASDK Apple实现层
lipengwei
2020-01-13 c8a2da181c44889b7b108dbb4db3b5cd16615656
commit | author | age
330f2f 1 //
H 2 //  APLoginInfo.h
3 //  WAApImplUI
4 //
5 //  Created by wuyx on 16/3/7.
6 //  Copyright © 2016年 GHW-T-01. All rights reserved.
7 //
8
9 #import <Foundation/Foundation.h>
10
11 @interface WAAPLoginInfo : NSObject<NSCoding,NSCopying>
12 @property(nonatomic,strong)NSURL* publicKeyUrl;
13 @property(nonatomic,strong)NSData* signature;
14 @property(nonatomic,strong)NSData* salt;
15 @property(nonatomic)uint64_t timestamp;
16 @end