1 /*
   2  * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test
  26  * @bug 6445367
  27  * @summary Verify that ATR.getHistoricalBytes() works
  28  * @author Andreas Sterbenz
  29  * @compile -addmods java.smartcardio HistoricalBytes.java
  30  * @run main/othervm -addmods java.smartcardio HistoricalBytes
  31  */
  32 
  33 import java.util.Arrays;
  34 
  35 import javax.smartcardio.*;
  36 
  37 public class HistoricalBytes {
  38 
  39     public static String toString(byte[] b) {
  40         return Serialize.toString(b);
  41     }
  42 
  43     public static byte[] parse(String s) {
  44         return Serialize.parse(s);
  45     }
  46 
  47     // generated using ATR_analysis from pcsc-tools
  48 
  49     private final static String[] ATRS = {
  50         "3B 7F 18 00 00 00 31 C0 73 9E 01 0B 64 52 D9 04 00 82 90 00",
  51         "3B 65 00 00 9C 02 02 07 02",
  52         "3B 95 18 40 FF 62 01 02 01 04",
  53         "3B 86 40 20 68 01 01 02 04 AC",
  54         "3B 9F 96 80 1F C3 80 31 E0 73 FE 21 1B B3 E2 02 7E 83 0F 90 00 82",
  55         "3B FF 13 00 FF 81 31 FE 5D 80 25 A0 00 00 00 56 57 44 4B 33 32 30 05 00 3F",
  56         "3F 6D 00 00 80 31 80 65 B0 05 01 02 5E 83 00 90 00",
  57         "3F 65 35 64 02 04 6C 90 40",
  58         "3B 9F 96 80 1F C3 80 31 E0 73 FE 21 1B B3 E2 02 7E 83 0F 90 00 82 11",
  59         "3F 65 35 64 02 04 6C 90 40 55 55", // invalid
  60     };
  61 
  62     private final static String[] HIST = {
  63         "00 31 C0 73 9E 01 0B 64 52 D9 04 00 82 90 00",
  64         "9C 02 02 07 02",
  65         "62 01 02 01 04",
  66         "68 01 01 02 04 AC",
  67         "80 31 E0 73 FE 21 1B B3 E2 02 7E 83 0F 90 00",
  68         "80 25 A0 00 00 00 56 57 44 4B 33 32 30 05 00",
  69         "80 31 80 65 B0 05 01 02 5E 83 00 90 00",
  70         "02 04 6C 90 40",
  71         "",
  72         "",
  73     };
  74 
  75     public static void main(String[] args) throws Exception {
  76         for (int i = 0; i < ATRS.length; i++) {
  77             ATR atr = new ATR(parse(ATRS[i]));
  78             byte[] hist = parse(HIST[i]);
  79             byte[] b = atr.getHistoricalBytes();
  80             if (!Arrays.equals(b, hist)) {
  81                 throw new Exception("mismatch: " + toString(b) + " != " + toString(hist));
  82             }
  83         }
  84         System.out.println("OK");
  85     }
  86 
  87 }