/* * * * Copyright 1990-2009 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License version * 2 only, as published by the Free Software Foundation. * * 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 version 2 for more details (a copy is * included at /legal/license.txt). * * You should have received a copy of the GNU General Public License * version 2 along with this work; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa * Clara, CA 95054 or visit www.sun.com if you need additional * information or have any questions. */ package com.sun.satsa.util; import java.io.ByteArrayOutputStream; import java.io.UnsupportedEncodingException; import java.security.GeneralSecurityException; import java.security.MessageDigest; import java.util.*; import java.io.PrintStream; import com.sun.j2me.l10n.LocalizedStrings; import com.sun.j2me.i18n.Resource; /** * This class implements miscellaneous utility methods including * those used for conversion of BigIntegers to * byte arrays, hexadecimal printing of byte arrays etc. */ public class Utils { /** UTF-8 encoding name. */ public static final String utf8 = "UTF-8"; /** Hexadecimal digits. */ private static char[] hc = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' }; /** * Returns hex value for given sequence of bytes. * @param b source data * @param off offset of the first byte * @param len length of the value * @return hex value for given sequence of bytes. */ public static String hexNumber(byte[] b, int off, int len) { char[] r; int v; int i; int j; if ((b == null) || (len == 0)) { return ""; } if ((off < 0) || (len < 0)) { throw new ArrayIndexOutOfBoundsException(); } r = new char[len * 2]; for (i = 0, j = 0; ; ) { v = b[off + i] & 0xff; r[j++] = hc[v >>> 4]; r[j++] = hc[v & 0x0f]; i++; if (i >= len) { break; } } return (new String(r, 0, j)); } /** * Returns hex value for given byte. * @param b source data * @return hex value. */ public static String hexByte(int b) { b = b & 0xff; return new String(new char[] {hc[b >>> 4], hc[b & 0x0f]}); } /** * Checks if two byte arrays match. * @param a the first byte array * @param aOff starting offset for comparison within a * @param aLen length of data in the first array * @param b the second byte array * @param bOff starting offset for comparison within b * @param bLen length of data in the second array * @return true if the sequence of len bytes in a starting at * aOff matches those in b starting at bOff, false otherwise */ public static boolean byteMatch(byte[] a, int aOff, int aLen, byte[] b, int bOff, int bLen) { if ((aLen != bLen) || (a.length < aOff + aLen) || (b.length < bOff + bLen)) { return false; } for (int i = 0; i < aLen; i++) { if (a[i + aOff] != b[i + bOff]) return false; } return true; } /** * Checks if two byte arrays match. * @param a the first byte array * @param b the second byte array * @return true if both arrays has the same length and contents */ public static boolean byteMatch(byte[] a, byte[] b) { return byteMatch(a, 0, a.length, b, 0, b.length); } /** * Converts a sequence of bytes into a printable OID, * a string of decimal digits, each separated by a ".". * @param buffer byte array containing the bytes to be converted * @param offset starting offset of the byte subsequence inside b * @param length number of bytes to be converted * @return printable OID */ public static String OIDtoString(byte[] buffer, int offset, int length) { StringBuffer result; int end; int t; int x; int y; if (length == 0) { return ""; } result = new StringBuffer(40); end = offset + length; // first byte (t) always represents the first 2 values (x, y). // t = (x * 40) + y; t = buffer[offset++] & 0xff; x = t / 40; y = t - (x * 40); result.append(x); result.append('.'); result.append(y); x = 0; while (offset < end) { // 7 bit per byte, bit 8 = 0 means the end of a value x = x << 7; t = buffer[offset++]; if (t >= 0) { x += t; result.append('.'); result.append(x); x = 0; } else { x += t & 0x7f; } } return result.toString(); } /** * Converst OID from string representation into byte array. * @param oid string representation of OID * @return byte array containing DER value for this OID. */ public static byte[] StringToOID(String oid) { if (oid == null || oid.indexOf('-') != -1) { throw new IllegalArgumentException(oid); } ByteArrayOutputStream out = new ByteArrayOutputStream(); int i = 0; int b1 = 0; int current = 0; try { while (current < oid.length()) { i++; int k = oid.indexOf('.', current); if (k == -1) { k = oid.length(); } int v = Integer.parseInt(oid.substring(current, k)); current = k + 1; if (i == 1) { b1 = v; continue; } if (i == 2) { v = b1 * 40 + v; if (v > 255) { throw new IllegalArgumentException(oid); } out.write(v); continue; } int p = 0; k = v; while (true) { p += 1; k = k >> 7; if (k == 0) { break; } } k = v; while (p > 0) { byte x = (byte) (k >> ((p - 1) * 7)); if (p == 1) { x &= 0x7f; } else { x |= 0x80; } p--; out.write(x); } } if (i < 2) { throw new IllegalArgumentException(oid); } } catch (NumberFormatException nfe) { throw new IllegalArgumentException(oid); } catch (IllegalArgumentException iae) { throw iae; } catch (NullPointerException npe) { throw new IllegalArgumentException(oid); } catch (IndexOutOfBoundsException iobe) { throw new IllegalArgumentException(oid); } return out.toByteArray(); } /** * Retrieves short value from byte array. * @param data byte array * @param offset value offset * @return the short value */ public static short getShort(byte[] data, int offset) { return (short) getU2(data, offset); } /** * Retrieves unsigned 2-byte value from byte array. * @param data byte array * @param offset value offset * @return the value */ public static int getU2(byte[] data, int offset) { return ((data[offset] & 0xff) << 8) | (data[offset + 1] & 0xff); } /** * Constructs integer value from byte array data. * @param data the byte array. * @param offset offset of the data. * @return the integer value. */ public static int getInt(byte[] data, int offset) { int l = 0; for (int k = 0; k < 4; k++) { l = (l << 8) | (data[offset++] & 0xFF); } return l; } /** * Calculates SHA-1 hash for given data. * @param data array containing the data * @param offset data offset * @param length data length * @return SHA-1 hash */ public static byte[] getHash(byte[] data, int offset, int length) { byte[] tmp = new byte[20]; try { MessageDigest md = MessageDigest.getInstance("SHA-1"); md.update(data, offset, length); md.digest(tmp, 0, tmp.length); } catch (GeneralSecurityException e) { // algorithm not found - not in this implementation throw new RuntimeException( "SHA-1 algorithm for MessageDigest not supported"); } return tmp; } /** * Returns byte array which contains encoded short value. * @param i the value * @return byte array */ public static byte[] shortToBytes(int i) { byte[] data = new byte[2]; data[0] = (byte) (i >> 8); data[1] = (byte) i; return data; } /** * Returns byte array that contains sequence of encoded short values. * @param data the short values * @return byte array */ public static byte[] shortsToBytes(short[] data) { byte[] d = new byte[2 * data.length]; for (int i = 0; i < data.length; i++) { d[i * 2] = (byte) (data[i] >> 8); d[i * 2 + 1] = (byte) data[i]; } return d; } /** * Returns UTF 8 encoding for this string. * @param s the string * @return UTF 8 encoding */ public static byte[] stringToBytes(String s) { try { return s.getBytes(utf8); } catch (UnsupportedEncodingException e) {} System.out.println("Internal error: unsupported encoding"); return null; } /** * Converts the calender to a string. * @param calendar input date information * @return formatted calendar string */ public static String calendarToString(Calendar calendar) { int dow, month, hour; String ampm, zoneID, day, h, minute, seconds, year; if (calendar == null) { /* By default: "Thu, 01 Jan 1970 12:00:00 AM */ dow = Calendar.THURSDAY-1; month = Calendar.JANUARY; day = "01"; minute = "00"; seconds = "00"; year = "1970"; zoneID = " GMT"; } else { dow = calendar.get(Calendar.DAY_OF_WEEK)-1; month = calendar.get(Calendar.MONTH); day = extendToTwoDigits(calendar.get(Calendar.DAY_OF_MONTH)); minute = extendToTwoDigits(calendar.get(Calendar.MINUTE)); seconds = extendToTwoDigits(calendar.get(Calendar.SECOND)); year = extendToFourDigits(calendar.get(Calendar.YEAR)); zoneID = calendar.getTimeZone().getID(); if (zoneID == null) { zoneID = ""; } else { zoneID = " " + zoneID; } } LocalizedStrings localString = new LocalizedStrings(); if (localString.isLocalizedAMPMafterTime()) { if (calendar == null) { ampm = "AM"; hour = 12; } else { ampm = (calendar.get(Calendar.AM_PM) == Calendar.AM) ? "AM" : "PM"; hour = calendar.get(Calendar.HOUR); if (hour == 0) { hour = 12; } } } else { if (calendar == null) { hour = 0; } else { hour = calendar.get(Calendar.HOUR_OF_DAY); } ampm = null; } h = extendToTwoDigits(hour); return localString.getLocalizedDateTimeString(Resource. getShortDayName(dow), day, Resource.getMonthName(month), year, h, minute, seconds, ampm) + zoneID; } /** * Appends zero filled numeric string for two digit numbers. * @param number the digit to format * @return formatted string */ private static final String extendToTwoDigits(int number) { String str = Integer.toString(number); if (number < 10) { str = '0' + str; } return str; } /** * Appends zero filled numeric string for four digit numbers. * @param number the digit to format * @return formatted string */ private static final String extendToFourDigits(int number) { String str = Integer.toString(number); if (number >= 0 && number < 1000) { str = '0' + str; if (number < 100) { str = '0' + str; } if (number < 10) { str = '0' + str; } } return str; } /** * IMPL_NOTE delete * Writes hex representation of byte array elements. * @param writer where to write * @param data data to be written */ public static void xwriteHex(PrintStream writer, byte[] data) { String s = " "; for (int i = 0; i < data.length; i++) { if (data[i] > -1 && data[i] < 16) { s = s + "0"; } s = s + Integer.toHexString(data[i] & 0xff) + " "; if ((i + 1) % 16 == 0) { writer.println(s); s = " "; } } if (s.length() != 4) { writer.println(s); } } }