Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 it

NSDictionary *value = [SGTLVDecode decodeWithString:@"Your TLV String"];

NSLog(@"TLV %@",value);

```