123456789101112131415161718192021222324 |
- //
- // UrlCrptyUtils.m
- // UUTUtils
- //
- // Created by zhuge on 2018/1/23.
- // Copyright © 2018年 zhuge. All rights reserved.
- //
- #import "UrlCrptyUtils.h"
- #import "BulldogTool.h"
- @implementation UrlCrptyUtils
- + (NSString *)encrypt:(NSString *)content {
- string ret = BulldogTool::getInstance()->encrypt([content UTF8String]);
- return [NSString stringWithUTF8String:ret.c_str()];
- }
- + (NSString *)decrypt:(NSString *)content {
- string ret = BulldogTool::getInstance()->decrypt([content UTF8String]);
- return [NSString stringWithUTF8String:ret.c_str()];
- }
- @end
|