DES3Util.h 320 B

123456789101112131415161718
  1. //
  2. // DES3Util.h
  3. // Miaxis
  4. //
  5. // Created by tongjun on 14-1-14.
  6. // Copyright (c) 2014年 tongjun. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface DES3Util : NSObject
  10. // 加密方法
  11. + (NSString*)encrypt:(NSString*)plainText;
  12. // 解密方法
  13. + (NSString*)decrypt:(NSString*)encryptText;
  14. @end