yunque9/web_xcode/Libraries/Plugins/iOS/SDKExport/lib/WXUtil.h

21 lines
378 B
C
Raw Normal View History

2025-05-24 14:29:14 +08:00
#import <Foundation/Foundation.h>
#import <CommonCrypto/CommonDigest.h>
@interface WXUtil :NSObject <NSXMLParserDelegate>
{
}
/*
MD5SHA1
*/
+(NSString *) md5:(NSString *)str;
+(NSString*) sha1:(NSString *)str;
/**
http GET/POST json
*/
+(NSData *) httpSend:(NSString *)url method:(NSString *)method data:(NSString *)data;
@end