22 lines
342 B
Objective-C
Executable File
22 lines
342 B
Objective-C
Executable File
//
|
|
// NSString+AES.h
|
|
//
|
|
//
|
|
// Created by Bear on 16/11/26.
|
|
// Copyright © 2016年 Bear. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface NSString (AES)
|
|
|
|
/**< 加密方法 */
|
|
- (NSString*)aci_encryptWithAES;
|
|
|
|
/**< 解密方法 */
|
|
- (NSString*)aci_decryptWithAES;
|
|
|
|
+ (NSString *)MD5String:(NSString *)signStr;
|
|
|
|
@end
|