<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[libnfc developers community]]></title>
		<link>http://www.libnfc.org/community/</link>
		<description><![CDATA[The most recent topics at libnfc developers community.]]></description>
		<lastBuildDate>Thu, 09 Sep 2010 19:50:05 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[pb with acces bits / how to restore factory default access bit ?]]></title>
			<link>http://www.libnfc.org/community/topic/228/pb-with-acces-bits-how-to-restore-factory-default-access-bit/new/posts/</link>
			<description><![CDATA[<p>Hi,</p><p>I have some trouble with acces bits on my mifare classic 1k card, I have programmed the card with my dump of another card (all the keys are ok) but for sure I have made a mistake with trailer so I can&#039;t write or read the card now..... but authentication with key A|B is OK</p><p>It is possible to force write the trailer or restore it to factory default ? or the card is burn definitly ?</p><p>lu²</p>]]></description>
			<author><![CDATA[dummy@example.com (lucyfire)]]></author>
			<pubDate>Thu, 09 Sep 2010 19:50:05 +0000</pubDate>
			<guid>http://www.libnfc.org/community/topic/228/pb-with-acces-bits-how-to-restore-factory-default-access-bit/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[IO Data USB2-NFC - Working]]></title>
			<link>http://www.libnfc.org/community/topic/224/io-data-usb2nfc-working/new/posts/</link>
			<description><![CDATA[<p>Hey guys I&#039;m new to this smart card thing, but thanks to u guys <br />even I can get reading tags up and running in just a few days. <br />Thanks for all the hard work!</p><p>I&#039;m using I-O Data USB2-NFC reader, PN531 chip inside from TOPPAN FORMS,<br />USB device (not a CCID) recognized under windows as TN31-NFC.</p><p>The driver came bundled but I had to build libnfc against libusb-win32 to get it working.<br />Getting it to work under windows is quite a tough time and I found <br /><a href="http://www.libnfc.org/community/topic/178/libusb0dll-and-win32-catch22/">this thread by snapdev</a> to be very useful.</p><p>I use CMake - Mingw32, not NMake though, so this is my list of changes:<br /></p><ul><li><p>included libusb-win23 header in /include/usb/usb.h</p></li><li><p>included usbstub.cpp by snapdev in /lib/usbstub.cpp</p></li><li><p>changes all include directive of &lt;usb.h&gt; to &lt;usb/usb.h&gt; (cosmetic ^^)</p></li></ul><p> </p><p>and this is my makefile<br /></p><div class="codebox"><pre><code>###############################################
# General settings
###############################################
VERSION = 1.3.4
SOURCE = ../src
NFC_LIB = $(SOURCE)/lib
NFC_INCLUDE = $(SOURCE)/include
NFC_BUSES = $(NFC_LIB)/buses
VPATH = $(SOURCE)/examples $(SOURCE)/examples/doc $(NFC_LIB) $(NFC_BUSES) $(NFC_LIB)/chips $(NFC_LIB)/drivers

###############################################
# Compiler settings
###############################################
CC = cl
LD = link
COMMONFLAGS = -O2 -GL -I &quot;$(Include);$(INCLUDE)&quot; -I &quot;$(NFC_INCLUDE)&quot; -I &quot;$(NFC_BUSES)&quot; -I &quot;stdint&quot; -D &quot;WIN32&quot; -MT -D &quot;_CRT_SECURE_NO_WARNINGS&quot; -D &quot;HAVE_PCSC_LITE&quot; -D &quot;WIN32_DCOM&quot; -D &quot;_WIN32_WINNT=0x500&quot; -D &quot;_CRT_SECURE_NO_DEPRECATE&quot; -D &quot;NTDDI_VERSION=0x05000400&quot; -D &quot;DRIVER_PN531_USB_ENABLED&quot; -D &quot;DRIVER_PN533_USB_ENABLED&quot; -D &quot;DRIVER_ACR122_ENABLED&quot; -D &quot;DRIVER_ARYGON_ENABLED&quot; -D &quot;DRIVER_PN532_UART_ENABLED&quot; -D &quot;PACKAGE_VERSION=\&quot;$(VERSION)\&quot;&quot; -D &quot;_WINDLL&quot; -EHsc -W3 -nologo -errorReport:prompt
CFLAGS = $(COMMONFLAGS) -TC
CXXFLAGS = $(COMMONFLAGS) -TP
LDFLAGS = -INCREMENTAL:NO -NOLOGO -MANIFEST:NO -OPT:REF -OPT:ICF -LTCG winscard.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib

###############################################
# Files
###############################################
OBJS = usbstub.obj pn53x.obj pn532_uart.obj acr122.obj arygon.obj bitutils.obj uart.obj nfc.obj pn53x_usb.obj pn531_usb.obj pn533_usb.obj
HEADERS = dev_acr122.h bitutils.h defines.h libnfc.h usb.h
LIBNFC = libnfc
EXES = nfc-anticol.exe nfc-list.exe nfc-emulate.exe nfc-relay.exe nfc-mfclassic.exe nfc-mfultralight.exe nfcip-initiator.exe nfcip-target.exe quick_start_example1.exe

all: $(LIBNFC) $(EXES)

usbstub.obj: usbstub.cpp
    $(CC) -c $(CXXFLAGS) $&lt; 
pn53x.obj : pn53x.c
    $(CC) -c $(CFLAGS) $&lt; 
pn532_uart.obj : pn532_uart.c
    $(CC) -c $(CFLAGS) $&lt; 
acr122.obj : acr122.c
    $(CC) -c $(CFLAGS) $&lt; 
arygon.obj : arygon.c
    $(CC) -c $(CFLAGS) $&lt; 
bitutils.obj : bitutils.c
    $(CC) -c $(CFLAGS) $&lt; 
uart.obj : uart.c
    $(CC) -c $(CFLAGS) $&lt; 
nfc.obj : nfc.c
    $(CC) -c $(CFLAGS) $&lt; 
pn53x_usb.obj : pn53x_usb.c
    $(CC) -c $(CFLAGS) $&lt; 
pn531_usb.obj : pn531_usb.c
    $(CC) -c $(CFLAGS) $&lt; 
pn533_usb.obj: pn533_usb.c
    $(CC) -c $(CFLAGS) $&lt; 
    
libnfc:  $(OBJS)
    $(LD) $(LDFLAGS) -OUT:$(LIBNFC).dll -DLL -DEF:&quot;libnfc.def&quot; -SUBSYSTEM:WINDOWS $(OBJS)

%.exe : %.c $(LIBNFC) 
    $(CC) $(CFLAGS) -TC -I &quot;$(NFC_LIB)&quot; $&lt; /link /OUT:$@ -SUBSYSTEM:CONSOLE $(LDFLAGS) $(LIBNFC).lib

clean: 
    del /Q $(OBJS) $(LIBNFC).dll $(LIBNFC).exp $(LIBNFC).lib *.obj $(EXES)</code></pre></div><p>*I don&#039;t understand makefiles too much, how do u differ *.c from *.cpp ?</p><p>of course, how to install libusb-win32 is not covered here.</p><p>So perhaps we can update this device compatibility list to TESTED-OK?<br />once again, to all developers and contributors, thank you very much!</p>]]></description>
			<author><![CDATA[dummy@example.com (rconty)]]></author>
			<pubDate>Thu, 09 Sep 2010 13:48:11 +0000</pubDate>
			<guid>http://www.libnfc.org/community/topic/224/io-data-usb2nfc-working/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[MFCUK - MiFare Classic Universal toolKit]]></title>
			<link>http://www.libnfc.org/community/topic/229/mfcuk-mifare-classic-universal-toolkit/new/posts/</link>
			<description><![CDATA[<p>Few months ago, Andrei Costin works on tk-libnfc-crapto1, a toolkit that allow to retrieve Mifare Classic keys without knowing them.</p><p>Renamed MFCUK for MiFare Classic Universal toolKit, this project based on libnfc provide a simply command line to recove whole keys of a Mifare Classic in few minutes.</p><p><a href="http://code.google.com/p/mfcuk">http://code.google.com/p/mfcuk</a></p><p>Now, this project is looking for contributors to bring MFCUK works with libnfc 1.3.9, I already did some works be applying API changes to MFCUK but I can&#039;t get it works with the lastest libnfc. If somebody have some knowledge in Mifare Classic hacking and wants to improve this tool, please contact me or Andrei Costin to gain an SVN access to MFCUK project.</p>]]></description>
			<author><![CDATA[dummy@example.com (rconty)]]></author>
			<pubDate>Thu, 09 Sep 2010 06:04:20 +0000</pubDate>
			<guid>http://www.libnfc.org/community/topic/229/mfcuk-mifare-classic-universal-toolkit/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[General question / shopping guide ;)]]></title>
			<link>http://www.libnfc.org/community/topic/226/general-question-shopping-guide/new/posts/</link>
			<description><![CDATA[<p>Hi,</p><p>I have a general question regarding libNFC and its hardware support. My plan is to build a simple wireless connection between two NFC devices without any error correction. Is this possible? Does it depend on the hardware? I want to buy two devices. Which hardware can you recommend? I guess there are some devices which are better supported than others, or?<br />Maybe, someone can share his experiences...</p><p>Regards,<br />Tim</p>]]></description>
			<author><![CDATA[dummy@example.com (rconty)]]></author>
			<pubDate>Thu, 09 Sep 2010 05:45:01 +0000</pubDate>
			<guid>http://www.libnfc.org/community/topic/226/general-question-shopping-guide/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[How to write NDEF data into Mifare Classic 1k/4k]]></title>
			<link>http://www.libnfc.org/community/topic/227/how-to-write-ndef-data-into-mifare-classic-1k4k/new/posts/</link>
			<description><![CDATA[<p>Hi all,</p><p>I was trying to write the example NDEF data that is present at the below link in Mifare 1K tag.</p><p>But when I try to read with my Tag read application (Propritory), it is saying NDEF data not found.<br />Is there any procedure to write the NDEF data into Mifare1K?<br />If you have any example NDEF raw data, pls provide me.</p><p>Note: I started writing the NDEF data from the Block 1 of Sector 0 (as Block 0 of the sector 0 contains &quot;Manufacturer data&quot;.<br />I am using ACR 122 tag reader/writer.</p><p>Thanks,<br />Nagendra</p>]]></description>
			<author><![CDATA[dummy@example.com (nagendra)]]></author>
			<pubDate>Wed, 08 Sep 2010 13:08:57 +0000</pubDate>
			<guid>http://www.libnfc.org/community/topic/227/how-to-write-ndef-data-into-mifare-classic-1k4k/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[libfreefare-0.2.0 is out!]]></title>
			<link>http://www.libnfc.org/community/topic/225/libfreefare020-is-out/new/posts/</link>
			<description><![CDATA[<p>The libfreefare team is pround to announce the release of libfreefare-0.2.0!</p><p>This new version introduce support for Mifare DESFire targets, and fix a few issues.&nbsp; A complete list of supported targets is available on the project page [1], and the tarball is available in the download section [2].</p><p>Get it while it&#039;s hot!</p><p>References:<br /></p><ol class="decimal"><li><p><a href="http://code.google.com/p/nfc-tools/wiki/libfreefare">http://code.google.com/p/nfc-tools/wiki/libfreefare</a></p></li><li><p><a href="http://code.google.com/p/nfc-tools/downloads/list">http://code.google.com/p/nfc-tools/downloads/list</a></p></li></ol>]]></description>
			<author><![CDATA[dummy@example.com (romain)]]></author>
			<pubDate>Tue, 07 Sep 2010 18:26:52 +0000</pubDate>
			<guid>http://www.libnfc.org/community/topic/225/libfreefare020-is-out/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[lsnfc: simple command for POSIX systems]]></title>
			<link>http://www.libnfc.org/community/topic/83/lsnfc-simple-command-for-posix-systems/new/posts/</link>
			<description><![CDATA[<p>POSIX systems users usually known commands like lspci, lsusb or lspcmcia; I&#039;m happy to announce that lsnfc now exists.<br />It was written for debugging purpose but it is already usable.</p><p>Output examples:<br /></p><div class="codebox"><pre><code>$ lsnfc
device = ACR122U102 - PN532 v1.4 (0x07)
  ISO14443A: NXP MIFARE DESFire (UID=04453501db2480)
  ISO14443A: NXP MIFARE DESFire (UID=042e4201db2480)
  ISO14443A: NXP MIFARE DESFire (UID=04145109db2480)
  ISO14443A: NXP MIFARE DESFire (UID=04443401db2480)
  ISO14443A: NXP MIFARE DESFire (UID=04400b09db2480)
5 tag(s) have been found.</code></pre></div><div class="codebox"><pre><code>$ lsnfc
device = ACR122U102 - PN532 v1.4 (0x07)
  ISO14443A: NXP MIFARE Classic 1K (UID=fccd5dd3)
  ISO14443A: NXP MIFARE Classic 1K (UID=5c6c5ed3)
  ISO14443A: NXP MIFARE Classic 1K (UID=6c185fd3)
3 tag(s) have been found.</code></pre></div><div class="codebox"><pre><code>$ lsnfc
device = ACR122U102 - PN532 v1.4 (0x07)
  ISO14443A: NXP MIFARE Ultralight (UID=04652e91212580)
  ISO14443A: NXP MIFARE Ultralight (UID=04ce4591212580)
  ISO14443A: NXP MIFARE Ultralight (UID=047a3991212580)
3 tag(s) have been found.</code></pre></div><p>lsnfc is a part from nfcutils package in nfc-tools project (<a href="http://code.google.com/p/nfc-tools/">http://code.google.com/p/nfc-tools/</a>).<br />As a part of nfc-tools, nfcutils is under GPL license and contributions are welcome.</p>]]></description>
			<author><![CDATA[dummy@example.com (rconty)]]></author>
			<pubDate>Tue, 07 Sep 2010 16:32:14 +0000</pubDate>
			<guid>http://www.libnfc.org/community/topic/83/lsnfc-simple-command-for-posix-systems/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[libnfc 1.3.x releases]]></title>
			<link>http://www.libnfc.org/community/topic/131/libnfc-13x-releases/new/posts/</link>
			<description><![CDATA[<p>Dear developers,</p><p>We are proud to announce the new version 1.3.0 of libnfc.</p><p>This release would not have been possible without the help of the following contributors:<br /> - Adam Laurie<br /> - Emanuele Bertoldi (<strong>Zuck</strong>)<br /> - François Kooman (<strong>fkooman</strong>)<br /> - Roger Brown (<strong>snapdev</strong>)<br /> - Romain Tartière (<strong>romain</strong>)<br /> - <strong>XXV</strong><br />and others... ;-)</p><p>There are many fixes, improvments and changes:<br /></p><div class="codebox"><pre><code>Fixes:
 - build: Add workarounds for libusb when compiling using C99;
 - build: Attempt to fix rpath issue on linux platform (it is already deprecated in main distributions. i.e. http://wiki.debian.org/RpathIssue);
 - build: wrong paths in pkg-config file;
 - libnfc: Remove warnings when compiling;
 - libnfc: Various code fixes and cleanup;
 - bus uart: Added support for recv/send of larger data chunks (&gt;default_os_buffer);
 - bus uart: Fix some some buffer synchronization problems under POSIX system;
 - bus uart: Add configure option: --disable-serial-autoprobe to disable autoprobing;
 - libnfc: Fix nfc_target_init doesn&#039;t correctly reset the parity during initalization;
 - libnfc: added support for WUPA and 7,10 byte UID in nfc_initiator_select_tag();
 - libnfc: Fix tag re-selection with UID length &gt; 4 bytes (like DESFire or Ultralight);
 - nfc-mfclassic: Fix authenticated only with KEYA;

Improvments:
 - build: Build on FreeBSD;
 - build: Add alternative build system (CMake);
 - build: Add new files usefull for desktop GNU/Linux users: some rules for udev to allow non-root access to PN53x USB devices;
 - build: Update msinttypes up to revision 26. (used when compiling under Windows);
 - build: Add &quot;make doc&quot; directive: it will build API documentation using Doxygen. (--enable-doc flag is required at configure time);
 - libnfc: Add C++ compatibility;
 - libnfc: Add driver agnostic nfc_pick_device(), nfc_list_devices();
 - libnfc: It is now possible to specify a wanted device using new struct &quot;nfc_device_desc_t&quot;;
 - libnfc: Add device name to device descriptions (nfc_device_desc_t) to select a given PCSC device;
 - libnfc: Finally removed all dirty globals, it &#039;should&#039; be thread-safe now;
 - libnfc: Less confusing message for bitstreams display;
 - libnfc: chips level introduction with pn53x.h/c;
 - drivers: Add PN532 UART driver;
 - drivers pn533_usb and pn531_usb: Lets search continuing to find other USB readers if any in PN531 and PN533 USB drivers;
 - drivers pn533_usb and pn531_usb: Support for the generic vendorid/productid of the NXP chip;
 - drivers pn533_usb and pn531_usb: Consolidate duplicated code;
 - examples: Add MIFARE Ultratag tool;
 - examples: Add man page for nfc-mfultool;
 - examples: MIFARE examples (mftool and mfultool) have now a better help message;
 - examples: Add NFCIP (NDEP) as experimental feature;
 - examples: add quiet mode to improve timing of emulate, relay and anticol commands;
 - nfc-list: List all devices in nfc-list(1);
 - nfc-list: Simply turns off the RF field upon exit;
 - nfc-emulate: allow UID to be specified;
 - nfc-relay: Initialize initiator device explicitly;
 - nfc-relay: Capture ctrl-c for quitting cleanly the relay attack application;
 - nfc-relay: exit properly if emulator initialization failed;
 - nfc-mfclassic: Add default keys tries;

Changes:
 - API: Rename tag_info to nfc_target_info_t;
 - API: Rename init_modulation to nfc_modulation_t;
 - API: Rename dev_config_option to nfc_device_option_t;
 - API: Use NULL instead of INVALID_DEVICE_INFO to know if device is valid;
 - API: Rename chip_type to nfc_chip_t;
 - API: Rename dev_spec to nfc_device_spec_t;
 - API: Rename dev_info struct to nfc_device_t;
 - API: Variables have been renamed to match coding conventions;
 - API: Changed length parmeters from uint32_t to size_t;
 - Files: Remove defines.h public header;
 - Files: Prefix messages.h and types.h headers by &quot;nfc-&quot;;
 - Files: Revamp libnfc source tree;
 - Files: Move examples into src/examples subdirectory;
 - Examples: Rename nfc-mftool to nfc-mfclassic;
 - Examples: Rename nfc-mfultool to nfc-mfultralight;</code></pre></div><p>Archives are available for both POSIX compliant systems and Windows as the usual location<br /><a href="http://code.google.com/p/libnfc/downloads/list">http://code.google.com/p/libnfc/downloads/list</a></p><p>Have fun !</p>]]></description>
			<author><![CDATA[dummy@example.com (rconty)]]></author>
			<pubDate>Tue, 07 Sep 2010 16:16:04 +0000</pubDate>
			<guid>http://www.libnfc.org/community/topic/131/libnfc-13x-releases/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[difficulty loging in to forum]]></title>
			<link>http://www.libnfc.org/community/topic/223/difficulty-loging-in-to-forum/new/posts/</link>
			<description><![CDATA[<p>Hello,</p><br /><p>For quite some time now I&#039;ve been having problems logging into this forum.<br />The forum allways came back with errors about cookies that could not be set etc. ; very annoying.<br />Then, after a tip from Romuald, I found out that the forum does work, as long as you tick the &#039; remember me&#039; button.<br />Maybe it&#039;s something other people might like to know.<br />It helps a bit when trying to post a question :-)</p><br /><p>Regards,<br />Tom</p>]]></description>
			<author><![CDATA[dummy@example.com (TomBu)]]></author>
			<pubDate>Mon, 30 Aug 2010 11:25:43 +0000</pubDate>
			<guid>http://www.libnfc.org/community/topic/223/difficulty-loging-in-to-forum/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Bugs in svn for Arygon reader]]></title>
			<link>http://www.libnfc.org/community/topic/222/bugs-in-svn-for-arygon-reader/new/posts/</link>
			<description><![CDATA[<p>Hi,</p><p>I&#039;m working with the serial driver of arygon on the trunk, and have notice that you are modify quite a few thinks in the past days.</p><p>As a tester I will point out some stuff you should change:<br />- uart.c --&gt; uart_xxx are no longer returning bool so in arygon.c you should change the transcieve to put it to &lt;0 instead of !=0<br />- arygon.c --&gt; the device name, in line 165 is not well copied. In the PCSC devices the name is adquired from the driver but in arygon serial it is never stored in pndd-&gt;acDevice. You should set as it was in previous versions to ARYGON_READER_NAME or similar<br />&nbsp; &nbsp;----&gt; line not correct : strncpy(pnd-&gt;acName, pndd-&gt;acDevice, DEVICE_NAME_LENGTH - 1);<br />The issue is that in arygon_list_devices you copy it correctly as it is hardcoded ARYGON.</p><p>Hope that helps you out. Really good job, but the changes are making me driving mad. The issue is I cannot use the libfreefare with old versions of libnfc <img src="http://www.libnfc.org/community/img/smilies/wink.png" width="15" height="15" alt="wink" /></p><p>Besides that I will in a few day point you something also for libfreefare.</p><p>See you</p>]]></description>
			<author><![CDATA[dummy@example.com (rconty)]]></author>
			<pubDate>Mon, 30 Aug 2010 07:30:38 +0000</pubDate>
			<guid>http://www.libnfc.org/community/topic/222/bugs-in-svn-for-arygon-reader/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Cannot use libnfc on Win7 32Bit]]></title>
			<link>http://www.libnfc.org/community/topic/221/cannot-use-libnfc-on-win7-32bit/new/posts/</link>
			<description><![CDATA[<p>Hello to everybody.<br />I did not have the time to follow the project but on holidays I tried and had some problems.<br />First of all I deleted svn folder and re downloaded all code from SVN.<br />Then I tried to follow readme-windows.txt with cmake-gui method but I get a strange error during linkin, something like &quot;Error 0x02&quot; ?!?!?!?!?<br />So I opened windows folder and typed simply nmake and I could compile with no errors....but...<br />if I try to run for example nfc-list.exe with a card in the reader, it crashes, and it crashes more or less with all the other examples.<br />The strange is that nfc-list for example says it&#039;s using 1.3.4 version.</p><p>So I opened my Ubuntu 10.04 virtual machine and re downloaded from svn everything, compiled, and it works well with both Touchatag and Snapper USB, nfc-list works perfectly and it says it&#039;s using 1.3.9 release (r566).</p><p>What can I try to use it in Windows 7 Pro ?<br />I also tried to use in Windows Console using &quot;Run as Administrator&quot; with no effect.</p><p>What do I missed to do ?</p><p>Can you provide 1.3.9 windows binaries ?</p><p>Thanks</p><p>Leo</p>]]></description>
			<author><![CDATA[dummy@example.com (rleo79)]]></author>
			<pubDate>Tue, 24 Aug 2010 10:57:05 +0000</pubDate>
			<guid>http://www.libnfc.org/community/topic/221/cannot-use-libnfc-on-win7-32bit/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Is Ehuoyan YHY632 compatible with libnfc?]]></title>
			<link>http://www.libnfc.org/community/topic/220/is-ehuoyan-yhy632-compatible-with-libnfc/new/posts/</link>
			<description><![CDATA[<p>This is a Mifare Reader wich works via serial port. In it&#039;s board there is a MFRC500, a STC90C58RD+ and an RS232-TTL signal converter. Is there any chance for this RFID work with libnfc? </p><p>Sorry for bad english.</p>]]></description>
			<author><![CDATA[dummy@example.com (romain)]]></author>
			<pubDate>Tue, 24 Aug 2010 06:38:49 +0000</pubDate>
			<guid>http://www.libnfc.org/community/topic/220/is-ehuoyan-yhy632-compatible-with-libnfc/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Unknown SAK reply]]></title>
			<link>http://www.libnfc.org/community/topic/196/unknown-sak-reply/new/posts/</link>
			<description><![CDATA[<p>I have a card which replies with the following<br />ATQA (SENS_RES): 00 04<br />UID (NFCID): 8E BB 32 40<br />SAK (SEL_RES):53 04 00 00</p><p>So it is a MIFARE CLASSIC tag but the SAK doesn&#039;t correspond to any reported here..<br /><a href="http://www.libnfc.org/documentation/hardware/tags/iso14443">http://www.libnfc.org/documentation/har &#133; s/iso14443</a></p><p>What one has to do in these cases?</p>]]></description>
			<author><![CDATA[dummy@example.com (rconty)]]></author>
			<pubDate>Thu, 19 Aug 2010 12:08:36 +0000</pubDate>
			<guid>http://www.libnfc.org/community/topic/196/unknown-sak-reply/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Authentication against Nokia 6212's secure element]]></title>
			<link>http://www.libnfc.org/community/topic/213/authentication-against-nokia-6212s-secure-element/new/posts/</link>
			<description><![CDATA[<p>I use a serial reader Feig CPR M02 and Nokia 6212 unlocked.<br />If i use gpshell, helloworld.cap to install, i get:<br />C:\work&gt;GPShell.exe helloworld.txt<br />mode_211<br />enable_trace<br />establish_context<br />card_connect<br />* reader name FEIG ID CPR.M02.VP/AB-C 0<br />open_sc -security 3 -keyver 42 -mac_key 404142434445464748494A4B4C4D4E4F -enc_ke<br />y 404142434445464748494A4B4C4D4E4F -kek_key 404142434445464748494A4B4C4D4E4F<br />–&gt; 00CA006600<br />80502A0008313BBBE336A0B41400<br />8482030010F26A412631967224AA134965F70D8C0B<br />80E400800C4F0AA00000006203010C010100<br />80E400800B4F09A00000006203010C0100<br />80E602001809A00000006203010C0100000AEF08C60201B0C80200640000<br />80E80000EFC48201A5010013DECAFFED010204000109A00000006203010C0102001F0013001F<br />000E00150036000C0067000A00130000006C00000000000002010004001502040107A00000006201<br />01000107A000000062000103000E010AA00000006203010C0101001406000C008003010001070100<br />00001F070067000210188C000118110100900B8700188B00027A02308F00033D8C00043B7A052319<br />8B00052D198B0006320329041F651B1A08AD0016041F8D00073B16041F41290419088B00083270E6<br />198B00093B19160408418B000A1903088B000B19AD000316048B000C7A08000A0000000000000000<br />000005003600<br />load_applet() returns 0x8010002F (Error comunication with smartcard.)</p><p>The authentication work (9000) but not the installation.</p><p>I try with jcManager:</p><p>Open terminal …<br />EstablishContext(): …<br />Wait for card in a certain reader …<br />Pick reader …<br />**********************<br />Selecting Card Manager<br />***********************<br />-&gt; 00 A4 04 00 08 A0 00 00 00 03 00 00 00<br />80 50 00 00 08 1D 22 78 4F 0E D7 94 F8<br />84 82 03 00 10 E6 5C E7 00 CE FB EF 37 13 A1 05 B1 CF 64 79 FB<br />&lt;- 69 82<br />Could not authenticate. Aborting.</p><p>why authentication is not working? keys just the same.</p><p>Thanks, good work.</p>]]></description>
			<author><![CDATA[dummy@example.com (rconty)]]></author>
			<pubDate>Thu, 19 Aug 2010 11:44:05 +0000</pubDate>
			<guid>http://www.libnfc.org/community/topic/213/authentication-against-nokia-6212s-secure-element/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Mifare Emulation - Clarification?]]></title>
			<link>http://www.libnfc.org/community/topic/208/mifare-emulation-clarification/new/posts/</link>
			<description><![CDATA[<p>Ok, it&#039;s said that mifare emulation can&#039;t be done with a usb NFC reader due to timeing issues, what that actually causes these timing issues?</p><p>Secondly, if thats the case, does anyone know if emulation could occur through a serial interfaced to an NFC chipset instead?</p><p>Also, a side question, does anyone know somewhere that sells PN53x chips in realtively low quanities? DigiKey seems to only sell them in the hundreds, so not really very helpful for this kind of thing.</p><p>Thanks to any and al replies <img src="http://www.libnfc.org/community/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (rconty)]]></author>
			<pubDate>Thu, 19 Aug 2010 11:37:20 +0000</pubDate>
			<guid>http://www.libnfc.org/community/topic/208/mifare-emulation-clarification/new/posts/</guid>
		</item>
	</channel>
</rss>
