GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
TLV(3) FreeBSD Library Functions Manual TLV(3)

tlv_encode, tlv_decode
TLV Manipulation Functions

Mifare card manipulation library (libfreefare, -lfreefare)

#include <freefare.h>

uint8_t *
tlv_encode(const uint8_t type, const uint8_t *istream, uint16_t isize, size_t *osize);

uint8_t *
tlv_decode(const uint8_t *istream, uint8_t *type, uint16_t *size);

The tlv_encode() and tlv_decode() functions are helpers to manipulate TLV (Text-Length-Value) data.

The tlv_encode() function converts the isize bytes long istream message into a TLV stream of type type and set the value of osize to the length of the returned stream.

The tlv_decode() function converts the istream TLV stream and set the type argument according to the type of the stream, and set the size argument to the length of the returned stream.

Both functions return memory allocated using malloc(3) which should be reclaimed using free(3) after usage.

freefare(3), malloc(3), free(3)

Romain Tartiere ⟨romain@blogreen.org⟩
Romuald Conty ⟨romuald@libnfc.org⟩
March 30, 2010 FreeBSD 13.1-RELEASE

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.