[Pcsclite-cvs-commit] r4866 - /trunk/PCSC/UnitaryTests/reset_card.py

rousseau at users.alioth.debian.org rousseau at users.alioth.debian.org
Thu Apr 8 15:36:54 UTC 2010


Author: rousseau
Date: Thu Apr  8 15:36:52 2010
New Revision: 4866

URL: http://svn.debian.org/wsvn/pcsclite/?sc=1&rev=4866
Log:
reset a card using SCardDisconnect (default) or SCardReconnect (if an
argument is passed)

Added:
    trunk/PCSC/UnitaryTests/reset_card.py   (with props)

Added: trunk/PCSC/UnitaryTests/reset_card.py
URL: http://svn.debian.org/wsvn/pcsclite/trunk/PCSC/UnitaryTests/reset_card.py?rev=4866&op=file
==============================================================================
--- trunk/PCSC/UnitaryTests/reset_card.py (added)
+++ trunk/PCSC/UnitaryTests/reset_card.py Thu Apr  8 15:36:52 2010
@@ -1,0 +1,59 @@
+#! /usr/bin/env python
+
+#   reset_card.py: reset a card
+#   Copyright (C) 2010  Ludovic Rousseau
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2 of the License, or
+#   (at your option) any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation, Inc.,
+#   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+from smartcard.scard import *
+import sys
+
+hresult, hcontext = SCardEstablishContext(SCARD_SCOPE_USER)
+if hresult != SCARD_S_SUCCESS:
+    raise Exception('Failed to establish context: ' + SCardGetErrorMessage(hresult))
+
+hresult, readers = SCardListReaders(hcontext, [])
+if hresult != SCARD_S_SUCCESS:
+    raise Exception('Failed to list readers: ' + SCardGetErrorMessage(hresult))
+print 'PC/SC Readers:', readers
+
+print "Using reader:", readers[0]
+
+# Connect in SCARD_SHARE_SHARED mode
+hresult, hcard, dwActiveProtocol = SCardConnect(hcontext, readers[0],
+    SCARD_SHARE_SHARED, SCARD_PROTOCOL_ANY)
+if hresult != SCARD_S_SUCCESS:
+    raise Exception('Failed to SCardConnect: ' + SCardGetErrorMessage(hresult))
+
+if len(sys.argv) > 1:
+    print "reset using SCardReconnect"
+
+    # Reconnect after reset
+    hresult, dwActiveProtocol = SCardReconnect(hcard,
+        SCARD_SHARE_EXCLUSIVE, SCARD_PROTOCOL_ANY, SCARD_RESET_CARD)
+    if hresult != SCARD_S_SUCCESS:
+        raise Exception('Failed to SCardReconnect: ' +
+            SCardGetErrorMessage(hresult))
+else:
+    print "reset using SCardDisconnect"
+
+    # Disconnect after reset
+    hresult = SCardDisconnect(hcard, SCARD_RESET_CARD)
+    if hresult != SCARD_S_SUCCESS:
+        raise Exception('Failed to SCardDisconnect: ' + SCardGetErrorMessage(hresult))
+
+hresult = SCardReleaseContext(hcontext)
+if hresult != SCARD_S_SUCCESS:
+    raise Exception('Failed to release context: ' + SCardGetErrorMessage(hresult))

Propchange: trunk/PCSC/UnitaryTests/reset_card.py
------------------------------------------------------------------------------
    svn:executable = *




More information about the Pcsclite-cvs-commit mailing list