17 lines
398 B
Objective-C
Executable File
17 lines
398 B
Objective-C
Executable File
//
|
|
// MAIDESEncryptTool.h
|
|
// BellFramework
|
|
//
|
|
// Created by 罗兴志 on 2017/5/4.
|
|
// Copyright © 2017年 罗兴志. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface MAIDESEncryptTool : NSObject
|
|
//加密方法
|
|
+(NSString *)encryptUseDES:(NSString *)plainText key:(NSString *)key;
|
|
//解密方法
|
|
+(NSString *)decryptUseDES:(NSString *)cipherText key:(NSString *)key;
|
|
@end
|