I have both a Visa Electron and Debit Mastercard, however whenever i try to select the Application using their respective AIDs A0000000032010 and A0000000041010 I get a 6A82 response meaning the file was not found.
Here's my code snippet for both selections
//SELECTING VISA ELECRON CARD APPLICATION
byte[] ApduCMDVC = new byte[] { (byte) 0x00, (byte) 0xA4, (byte) 0x04,
(byte) 0x00, (byte) 0x0E,
(byte) 0x41, (byte)0x30, (byte) 0x30, (byte) 0x30,
(byte) 0x30,(byte) 0x30,(byte) 0x30,(byte) 0x30,(byte) 0x30,
(byte) 0x33,(byte) 0x32,(byte) 0x30,(byte) 0x31,(byte) 0x30};
//SELECTING MASTER CARD APPLICATION
byte[] ApduCMDMC = new byte[] { (byte) 0x00, (byte) 0xA4, (byte) 0x04,
(byte) 0x00, (byte) 0x0E,
(byte) 0x41, (byte)0x30, (byte) 0x30, (byte) 0x30,
(byte) 0x30,(byte) 0x30,(byte) 0x30,(byte) 0x30,(byte) 0x30,
(byte) 0x34,(byte) 0x31,(byte) 0x30,(byte) 0x31,(byte) 0x30};
Could there be something I'm doing wrong?