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
MIFARE_APPLICATION(3) FreeBSD Library Functions Manual MIFARE_APPLICATION(3)

mifare_application_alloc, mifare_application_find, mifare_application_free, mifare_application_read, mifare_application_write
Mifare Applications Manipulation Functions

Mifare card manipulation library (libfreefare, -lfreefare)

#include <freefare.h>

MifareClassicSectorNumber *
mifare_application_alloc(Mad mad, MadAid aid, size_t size);

void
mifare_application_free(Mad mad, MadAid aid);

MifareClassicSectorNumber *
mifare_application_find(Mad mad, MadAid aid);

ssize_t
mifare_application_read(MifareTag tag, Mad mad, MadAid aid, void *buf, size_t nbytes, MifareClassicKey key, MifareClassicKeyType key_type);

ssize_t
mifare_application_write(MifareTag tag, Mad mad, MadAid aid, const void *buf, size_t nbytes, MifareClassicKey key, MifareClassicKeyType key_type);

The mifare_application_*() functions facilitate management of applications in a Mifare Application Directory.

The mifare_application_alloc() function allocates enought sectors to store size bytes for the Application Identifier aid and returns the list of allocated sectors.

The list of the sectors previously allocated for aid in a mad can be requested using mifare_application_find().

An application can be removed from a mad using mifare_application_free().

The mifare_application_read() reads at most nbytes of the application identified by aid in the mad on the tag and copy them into buf. The function returns the amount of data it copied, or -1 on error.

The mifare_application_write() functions writes at most nbytes of buf in the application identified by aid on the mad of the tag and returns the quantity of data written, or -1 on error.

The mifare_application_alloc() function will try to avoid wasting space and might not allocate sectors sequentially if a large amount of space is requested and the target has sectors of different size.

The nbytes argument of mifare_application_read() and mifare_application_write() does not need to be aligned on blocks not sectors.

Unless stated otherwise, all functions return a value greater than or equal to 0 on success or -1 on failure.

mad(3), mifare_classic(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.