/*
* ---------
* |.##> <##.| Open Smart Card Development Platform (www.openscdp.org)
* |# #|
* |# #| Copyright (c) 1999-2006 CardContact Software & System Consulting
* |'##> <##'| Andreas Schwier, 32429 Minden, Germany (www.cardcontact.de)
* ---------
*
* This file is part of OpenSCDP.
*
* OpenSCDP is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* OpenSCDP 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 OpenSCDP; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* Delete Musclecard Applet from GP card
*/
load("const.js");
load("gp/tools.js");
var sdAid = new ByteString("A000000003000000", HEX);
// Generate default keys
var masterSENC = new Key("gp/kp_jcop_default_s-enc.xml");
var masterSMAC = new Key("gp/kp_jcop_default_s-mac.xml");
// Card object
var card = new Card(_scsh3.reader);
// Crypto object
var crypto = new Crypto();
// Define a security domain (profiles does not matter so far)
var sd = new GPSecurityDomain("profiles/ap_sample.xml");
sd.aid = sdAid;
sd.card = card;
//Reset the card
card.reset(Card.RESET_COLD);
print("Selecting card manager application...");
print(sd.select());
GPAuthenticate(card, crypto, masterSENC, masterSMAC);
print("Delete old applet instance...");
sd.deleteAID(applAid, [0x9000, 0x6A88] );
print("Delete old load file...");
sd.deleteAID(loadFileAid, [0x9000, 0x6A88] );
© Copyright 2003 - 2013 CardContact Software & System Consulting, Minden, Germany
