client_Hale
2019-05-06 b9cbcaa35e5515925c7e3b3620967cc8dc16b40a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
//  LocalDataProtection.h
//  mrsdk
//
//  Created by zxq on 2018/2/18.
//  Copyright © 2018年 maoer. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
@interface LocalDataProtection : NSObject
 
+(NSString*)encryptBase64 :(NSString*)content;
+(NSString*)decryptBase64 :(NSString*)content;
 
@end