Files
JJBB/Sdk/iOS/YuCheng/ThirdLibs/SPaySDK/include/NSString+SPayUtilsExtras.h
2024-08-23 15:49:34 +08:00

40 lines
658 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// NSString+SPayUtilsExtras.h
// SPaySDKDemo
//
// Created by wongfish on 15/6/14.
// Copyright (c) 2015年 wongfish. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface NSString (SPayUtilsExtras)
/**
* 生成md5
*/
@property (nonatomic, readonly) NSString* md5Hash;
/**
* 生成SPay需要的随机字符串
*
* @return <#return value description#>
*/
+ (NSString*)spay_nonce_str;
/**
* 生成SPay商户订单号
*
* @return <#return value description#>
*/
+ (NSString*)spay_out_trade_no;
/**
* 解析HTTP Get参数
*
* @return <#return value description#>
*/
-(NSDictionary*)parseHTTGetParameter;
@end