├── .gitattributes ├── .gitignore ├── LICENSE ├── PNG ├── URLSchemes.png ├── qqgroup.png └── weixin_alipay.png ├── README.md ├── XHPKit.podspec ├── XHPayKit.podspec ├── XHPayKit ├── NSDictionary+XHPayKit.h ├── NSDictionary+XHPayKit.m ├── NSString+XHPayKit.h ├── NSString+XHPayKit.m ├── XHPayKit.h ├── XHPayKit.m ├── XHPayKitConst.h ├── XHPayKitConst.m ├── XHPayWxReq.h └── XHPayWxReq.m ├── XHPayKitExample ├── XHPayKitExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── XHPayKitExample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── info └── README_Add.md └── 审核防检测到支付功能版本 ├── PNG ├── 001.png ├── URLSchemes.png └── qqgroup.png ├── README.md ├── XHPKit ├── NSDictionary+XHPKit.h ├── NSDictionary+XHPKit.m ├── NSString+XHPKit.h ├── NSString+XHPKit.m ├── XHPBase64Encode.h ├── XHPBase64Encode.m ├── XHPDESEncryption.h ├── XHPDESEncryption.m ├── XHPKit.h ├── XHPKit.m ├── XHPKitConst.h ├── XHPKitConst.m ├── XHPWxReq.h └── XHPWxReq.m └── XHPKitExample ├── XHPKitExample.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist └── XHPKitExample ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/LICENSE -------------------------------------------------------------------------------- /PNG/URLSchemes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/PNG/URLSchemes.png -------------------------------------------------------------------------------- /PNG/qqgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/PNG/qqgroup.png -------------------------------------------------------------------------------- /PNG/weixin_alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/PNG/weixin_alipay.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/README.md -------------------------------------------------------------------------------- /XHPKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/XHPKit.podspec -------------------------------------------------------------------------------- /XHPayKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/XHPayKit.podspec -------------------------------------------------------------------------------- /XHPayKit/NSDictionary+XHPayKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/XHPayKit/NSDictionary+XHPayKit.h -------------------------------------------------------------------------------- /XHPayKit/NSDictionary+XHPayKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/XHPayKit/NSDictionary+XHPayKit.m -------------------------------------------------------------------------------- /XHPayKit/NSString+XHPayKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/XHPayKit/NSString+XHPayKit.h -------------------------------------------------------------------------------- /XHPayKit/NSString+XHPayKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/XHPayKit/NSString+XHPayKit.m -------------------------------------------------------------------------------- /XHPayKit/XHPayKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/XHPayKit/XHPayKit.h -------------------------------------------------------------------------------- /XHPayKit/XHPayKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/XHPayKit/XHPayKit.m -------------------------------------------------------------------------------- /XHPayKit/XHPayKitConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/XHPayKit/XHPayKitConst.h -------------------------------------------------------------------------------- /XHPayKit/XHPayKitConst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/XHPayKit/XHPayKitConst.m -------------------------------------------------------------------------------- /XHPayKit/XHPayWxReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/XHPayKit/XHPayWxReq.h -------------------------------------------------------------------------------- /XHPayKit/XHPayWxReq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/XHPayKit/XHPayWxReq.m -------------------------------------------------------------------------------- /XHPayKitExample/XHPayKitExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/XHPayKitExample/XHPayKitExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /XHPayKitExample/XHPayKitExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/XHPayKitExample/XHPayKitExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /XHPayKitExample/XHPayKitExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/XHPayKitExample/XHPayKitExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /XHPayKitExample/XHPayKitExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/XHPayKitExample/XHPayKitExample/AppDelegate.h -------------------------------------------------------------------------------- /XHPayKitExample/XHPayKitExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/XHPayKitExample/XHPayKitExample/AppDelegate.m -------------------------------------------------------------------------------- /XHPayKitExample/XHPayKitExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/XHPayKitExample/XHPayKitExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /XHPayKitExample/XHPayKitExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/XHPayKitExample/XHPayKitExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /XHPayKitExample/XHPayKitExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/XHPayKitExample/XHPayKitExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /XHPayKitExample/XHPayKitExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/XHPayKitExample/XHPayKitExample/Info.plist -------------------------------------------------------------------------------- /XHPayKitExample/XHPayKitExample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/XHPayKitExample/XHPayKitExample/ViewController.h -------------------------------------------------------------------------------- /XHPayKitExample/XHPayKitExample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/XHPayKitExample/XHPayKitExample/ViewController.m -------------------------------------------------------------------------------- /XHPayKitExample/XHPayKitExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/XHPayKitExample/XHPayKitExample/main.m -------------------------------------------------------------------------------- /info/README_Add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/info/README_Add.md -------------------------------------------------------------------------------- /审核防检测到支付功能版本/PNG/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/PNG/001.png -------------------------------------------------------------------------------- /审核防检测到支付功能版本/PNG/URLSchemes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/PNG/URLSchemes.png -------------------------------------------------------------------------------- /审核防检测到支付功能版本/PNG/qqgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/PNG/qqgroup.png -------------------------------------------------------------------------------- /审核防检测到支付功能版本/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/README.md -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKit/NSDictionary+XHPKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKit/NSDictionary+XHPKit.h -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKit/NSDictionary+XHPKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKit/NSDictionary+XHPKit.m -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKit/NSString+XHPKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKit/NSString+XHPKit.h -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKit/NSString+XHPKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKit/NSString+XHPKit.m -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKit/XHPBase64Encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKit/XHPBase64Encode.h -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKit/XHPBase64Encode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKit/XHPBase64Encode.m -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKit/XHPDESEncryption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKit/XHPDESEncryption.h -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKit/XHPDESEncryption.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKit/XHPDESEncryption.m -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKit/XHPKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKit/XHPKit.h -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKit/XHPKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKit/XHPKit.m -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKit/XHPKitConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKit/XHPKitConst.h -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKit/XHPKitConst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKit/XHPKitConst.m -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKit/XHPWxReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKit/XHPWxReq.h -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKit/XHPWxReq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKit/XHPWxReq.m -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKitExample/XHPKitExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKitExample/XHPKitExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKitExample/XHPKitExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKitExample/XHPKitExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKitExample/XHPKitExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKitExample/XHPKitExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKitExample/XHPKitExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKitExample/XHPKitExample/AppDelegate.h -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKitExample/XHPKitExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKitExample/XHPKitExample/AppDelegate.m -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKitExample/XHPKitExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKitExample/XHPKitExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKitExample/XHPKitExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKitExample/XHPKitExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKitExample/XHPKitExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKitExample/XHPKitExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKitExample/XHPKitExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKitExample/XHPKitExample/Info.plist -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKitExample/XHPKitExample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKitExample/XHPKitExample/ViewController.h -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKitExample/XHPKitExample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKitExample/XHPKitExample/ViewController.m -------------------------------------------------------------------------------- /审核防检测到支付功能版本/XHPKitExample/XHPKitExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderZhuXH/XHPayKit/HEAD/审核防检测到支付功能版本/XHPKitExample/XHPKitExample/main.m --------------------------------------------------------------------------------