Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saturngod/sgtlvdecode
EMV TLV Decoder. Port to Objective-C From PHP. Original code is https://github.com/unwiredbrain/php-emv
https://github.com/saturngod/sgtlvdecode
Last synced: 26 days ago
JSON representation
EMV TLV Decoder. Port to Objective-C From PHP. Original code is https://github.com/unwiredbrain/php-emv
- Host: GitHub
- URL: https://github.com/saturngod/sgtlvdecode
- Owner: saturngod
- Created: 2014-05-22T16:28:54.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-05-22T16:33:20.000Z (over 10 years ago)
- Last Synced: 2024-10-16T02:10:43.978Z (2 months ago)
- Language: Objective-C
- Size: 109 KB
- Stars: 5
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
EMV TLV decoder for iOS. Base on https://github.com/unwiredbrain/php-emv.
Import SGTLVDecode folder into your project.
```objc
#import "SGTLVDecode.h"//some of your code
//usage itNSDictionary *value = [SGTLVDecode decodeWithString:@"Your TLV String"];
NSLog(@"TLV %@",value);
```