//
//  NSData+Hex.h
//  react_ios
//
//  Created by JohnnyChung on 2016/11/21.
//  Copyright © 2016年 Facebook. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface NSData(Hex)

+ (NSData *)dataWithHexString:(NSString *)hexString;
- (NSString *)dataToHexString;

@end
