Add seperate application to change the eid-PIN

git-svn-id: https://vsmartcard.svn.sourceforge.net/svnroot/vsmartcard@244 96b47cad-a561-4643-ad3b-153ac7d7599c
This commit is contained in:
oepen
2010-08-05 18:52:49 +00:00
parent 40898164d6
commit 0cf65896a5
5 changed files with 34 additions and 2 deletions

19
eID_gui/src/change_pin.py Normal file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/env python
# coding: utf-8
import sys, os, subprocess
try:
import pygtk
pygtk.require("2.0")
import gtk, gobject
except ImportError:
sys.exit(1)
from eid.eid_gui_globals import TEST_DESCRIPTION, TEST_CVC
from eid.windows import PINChanger
if __name__ == "__main__":
gobject.threads_init()
window = PINChanger()
window.show()
gtk.main()