zjf
2023-03-13 881f0da670f20c401c1e1d08b36253abb28f72d2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
//  PGGCryptoDES.h
//  PGGCrypto
//
//  Created by 陈鹏 on 2017/10/24.
//  Copyright © 2017年 penggege.CP. All rights reserved.
//  GitHub地址  https://github.com/penghero/PGGCrypto.git
 
 
 
@interface PGGCryptoDES : NSObject
 
//    加密方法
+(NSString *) encryptUseDES:(NSString *)plainText;
//    解密方法
+(NSString *)decryptUseDES:(NSString *)cipherText;
 
@end