Util.java 19 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
/* Util.java -- various utility routines.
   Copyright (C) 2001, 2002, 2003, 2006 Free Software Foundation, Inc.

This file is a part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at
your option) any later version.

GNU Classpath 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 GNU Classpath; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
USA

Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version.  */


package gnu.java.security.util;

import java.math.BigInteger;

/**
44
 * A collection of utility methods used throughout this project.
45 46 47 48 49 50 51
 */
public class Util
{
  // Hex charset
  private static final char[] HEX_DIGITS = "0123456789ABCDEF".toCharArray();

  // Base-64 charset
52 53
  private static final String BASE64_CHARS =
      "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz./";
54 55 56 57 58 59 60 61 62 63

  private static final char[] BASE64_CHARSET = BASE64_CHARS.toCharArray();

  /** Trivial constructor to enforce Singleton pattern. */
  private Util()
  {
    super();
  }

  /**
64 65 66 67
   * Returns a string of hexadecimal digits from a byte array. Each byte is
   * converted to 2 hex symbols; zero(es) included.
   * <p>
   * This method calls the method with same name and three arguments as:
68
   * <pre>
69
   * toString(ba, 0, ba.length);
70
   * </pre>
71
   * 
72
   * @param ba the byte array to convert.
73 74
   * @return a string of hexadecimal characters (two for each byte) representing
   *         the designated input byte array.
75 76 77 78 79 80 81
   */
  public static String toString(byte[] ba)
  {
    return toString(ba, 0, ba.length);
  }

  /**
82 83 84 85
   * Returns a string of hexadecimal digits from a byte array, starting at
   * <code>offset</code> and consisting of <code>length</code> bytes. Each
   * byte is converted to 2 hex symbols; zero(es) included.
   * 
86 87
   * @param ba the byte array to convert.
   * @param offset the index from which to start considering the bytes to
88
   *          convert.
89
   * @param length the count of bytes, starting from the designated offset to
90 91 92
   *          convert.
   * @return a string of hexadecimal characters (two for each byte) representing
   *         the designated input byte sub-array.
93 94 95 96 97 98 99 100
   */
  public static final String toString(byte[] ba, int offset, int length)
  {
    char[] buf = new char[length * 2];
    for (int i = 0, j = 0, k; i < length;)
      {
        k = ba[offset + i++];
        buf[j++] = HEX_DIGITS[(k >>> 4) & 0x0F];
101
        buf[j++] = HEX_DIGITS[ k        & 0x0F];
102 103 104 105 106
      }
    return new String(buf);
  }

  /**
107 108 109 110 111
   * Returns a string of hexadecimal digits from a byte array. Each byte is
   * converted to 2 hex symbols; zero(es) included. The argument is treated as a
   * large little-endian integer and is returned as a large big-endian integer.
   * <p>
   * This method calls the method with same name and three arguments as:
112
   * <pre>
113
   * toReversedString(ba, 0, ba.length);
114
   * </pre>
115
   * 
116
   * @param ba the byte array to convert.
117 118
   * @return a string of hexadecimal characters (two for each byte) representing
   *         the designated input byte array.
119 120 121 122 123 124 125
   */
  public static String toReversedString(byte[] ba)
  {
    return toReversedString(ba, 0, ba.length);
  }

  /**
126 127 128 129 130 131 132
   * Returns a string of hexadecimal digits from a byte array, starting at
   * <code>offset</code> and consisting of <code>length</code> bytes. Each
   * byte is converted to 2 hex symbols; zero(es) included.
   * <p>
   * The byte array is treated as a large little-endian integer, and is returned
   * as a large big-endian integer.
   * 
133 134
   * @param ba the byte array to convert.
   * @param offset the index from which to start considering the bytes to
135
   *          convert.
136
   * @param length the count of bytes, starting from the designated offset to
137 138 139
   *          convert.
   * @return a string of hexadecimal characters (two for each byte) representing
   *         the designated input byte sub-array.
140 141 142 143 144 145 146 147
   */
  public static final String toReversedString(byte[] ba, int offset, int length)
  {
    char[] buf = new char[length * 2];
    for (int i = offset + length - 1, j = 0, k; i >= offset;)
      {
        k = ba[offset + i--];
        buf[j++] = HEX_DIGITS[(k >>> 4) & 0x0F];
148
        buf[j++] = HEX_DIGITS[ k        & 0x0F];
149 150 151 152 153
      }
    return new String(buf);
  }

  /**
154 155 156 157
   * <p>
   * Returns a byte array from a string of hexadecimal digits.
   * </p>
   * 
158 159 160 161 162 163 164 165 166
   * @param s a string of hexadecimal ASCII characters
   * @return the decoded byte array from the input hexadecimal string.
   */
  public static byte[] toBytesFromString(String s)
  {
    int limit = s.length();
    byte[] result = new byte[((limit + 1) / 2)];
    int i = 0, j = 0;
    if ((limit % 2) == 1)
167
      result[j++] = (byte) fromDigit(s.charAt(i++));
168 169
    while (i < limit)
      {
170
        result[j  ] = (byte) (fromDigit(s.charAt(i++)) << 4);
171 172 173 174 175 176
        result[j++] |= (byte) fromDigit(s.charAt(i++));
      }
    return result;
  }

  /**
177 178 179 180
   * Returns a byte array from a string of hexadecimal digits, interpreting them
   * as a large big-endian integer and returning it as a large little-endian
   * integer.
   * 
181 182 183 184 185 186 187 188 189
   * @param s a string of hexadecimal ASCII characters
   * @return the decoded byte array from the input hexadecimal string.
   */
  public static byte[] toReversedBytesFromString(String s)
  {
    int limit = s.length();
    byte[] result = new byte[((limit + 1) / 2)];
    int i = 0;
    if ((limit % 2) == 1)
190
      result[i++] = (byte) fromDigit(s.charAt(--limit));
191 192
    while (limit > 0)
      {
193
        result[i  ] = (byte) fromDigit(s.charAt(--limit));
194 195 196 197 198 199
        result[i++] |= (byte) (fromDigit(s.charAt(--limit)) << 4);
      }
    return result;
  }

  /**
200 201 202
   * Returns a number from <code>0</code> to <code>15</code> corresponding
   * to the designated hexadecimal digit.
   * 
203 204 205 206 207
   * @param c a hexadecimal ASCII symbol.
   */
  public static int fromDigit(char c)
  {
    if (c >= '0' && c <= '9')
208
      return c - '0';
209
    else if (c >= 'A' && c <= 'F')
210
      return c - 'A' + 10;
211
    else if (c >= 'a' && c <= 'f')
212
      return c - 'a' + 10;
213 214 215 216 217
    else
      throw new IllegalArgumentException("Invalid hexadecimal digit: " + c);
  }

  /**
218 219 220
   * Returns a string of 8 hexadecimal digits (most significant digit first)
   * corresponding to the unsigned integer <code>n</code>.
   * 
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
   * @param n the unsigned integer to convert.
   * @return a hexadecimal string 8-character long.
   */
  public static String toString(int n)
  {
    char[] buf = new char[8];
    for (int i = 7; i >= 0; i--)
      {
        buf[i] = HEX_DIGITS[n & 0x0F];
        n >>>= 4;
      }
    return new String(buf);
  }

  /**
236 237
   * Returns a string of hexadecimal digits from an integer array. Each int is
   * converted to 4 hex symbols.
238 239 240 241 242 243 244 245 246 247 248 249 250
   */
  public static String toString(int[] ia)
  {
    int length = ia.length;
    char[] buf = new char[length * 8];
    for (int i = 0, j = 0, k; i < length; i++)
      {
        k = ia[i];
        buf[j++] = HEX_DIGITS[(k >>> 28) & 0x0F];
        buf[j++] = HEX_DIGITS[(k >>> 24) & 0x0F];
        buf[j++] = HEX_DIGITS[(k >>> 20) & 0x0F];
        buf[j++] = HEX_DIGITS[(k >>> 16) & 0x0F];
        buf[j++] = HEX_DIGITS[(k >>> 12) & 0x0F];
251 252 253
        buf[j++] = HEX_DIGITS[(k >>>  8) & 0x0F];
        buf[j++] = HEX_DIGITS[(k >>>  4) & 0x0F];
        buf[j++] = HEX_DIGITS[ k         & 0x0F];
254 255 256 257 258
      }
    return new String(buf);
  }

  /**
259 260 261
   * Returns a string of 16 hexadecimal digits (most significant digit first)
   * corresponding to the unsigned long <code>n</code>.
   * 
262 263 264 265 266 267 268 269
   * @param n the unsigned long to convert.
   * @return a hexadecimal string 16-character long.
   */
  public static String toString(long n)
  {
    char[] b = new char[16];
    for (int i = 15; i >= 0; i--)
      {
270
        b[i] = HEX_DIGITS[(int)(n & 0x0FL)];
271 272 273 274 275 276
        n >>>= 4;
      }
    return new String(b);
  }

  /**
277
   * Similar to the <code>toString()</code> method except that the Unicode
278 279
   * escape character is inserted before every pair of bytes. Useful to
   * externalise byte arrays that will be constructed later from such strings;
280 281
   * eg. s-box values.
   * 
282 283 284 285 286 287 288 289
   * @throws ArrayIndexOutOfBoundsException if the length is odd.
   */
  public static String toUnicodeString(byte[] ba)
  {
    return toUnicodeString(ba, 0, ba.length);
  }

  /**
290
   * Similar to the <code>toString()</code> method except that the Unicode
291 292
   * escape character is inserted before every pair of bytes. Useful to
   * externalise byte arrays that will be constructed later from such strings;
293 294
   * eg. s-box values.
   * 
295 296 297 298 299 300 301 302 303 304 305 306 307 308
   * @throws ArrayIndexOutOfBoundsException if the length is odd.
   */
  public static final String toUnicodeString(byte[] ba, int offset, int length)
  {
    StringBuffer sb = new StringBuffer();
    int i = 0;
    int j = 0;
    int k;
    sb.append('\n').append("\"");
    while (i < length)
      {
        sb.append("\\u");
        k = ba[offset + i++];
        sb.append(HEX_DIGITS[(k >>> 4) & 0x0F]);
309
        sb.append(HEX_DIGITS[ k        & 0x0F]);
310 311
        k = ba[offset + i++];
        sb.append(HEX_DIGITS[(k >>> 4) & 0x0F]);
312
        sb.append(HEX_DIGITS[ k        & 0x0F]);
313
        if ((++j % 8) == 0)
314
          sb.append("\"+").append('\n').append("\"");
315 316 317 318 319 320
      }
    sb.append("\"").append('\n');
    return sb.toString();
  }

  /**
321
   * Similar to the <code>toString()</code> method except that the Unicode
322 323
   * escape character is inserted before every pair of bytes. Useful to
   * externalise integer arrays that will be constructed later from such
324 325 326 327
   * strings; eg. s-box values.
   * 
   * @throws ArrayIndexOutOfBoundsException if the length is not a multiple of
   *           4.
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
   */
  public static String toUnicodeString(int[] ia)
  {
    StringBuffer sb = new StringBuffer();
    int i = 0;
    int j = 0;
    int k;
    sb.append('\n').append("\"");
    while (i < ia.length)
      {
        k = ia[i++];
        sb.append("\\u");
        sb.append(HEX_DIGITS[(k >>> 28) & 0x0F]);
        sb.append(HEX_DIGITS[(k >>> 24) & 0x0F]);
        sb.append(HEX_DIGITS[(k >>> 20) & 0x0F]);
        sb.append(HEX_DIGITS[(k >>> 16) & 0x0F]);
        sb.append("\\u");
        sb.append(HEX_DIGITS[(k >>> 12) & 0x0F]);
346 347 348
        sb.append(HEX_DIGITS[(k >>>  8) & 0x0F]);
        sb.append(HEX_DIGITS[(k >>>  4) & 0x0F]);
        sb.append(HEX_DIGITS[ k         & 0x0F]);
349
        if ((++j % 4) == 0)
350
          sb.append("\"+").append('\n').append("\"");
351 352 353 354 355 356 357 358 359 360 361 362 363
      }
    sb.append("\"").append('\n');
    return sb.toString();
  }

  public static byte[] toBytesFromUnicode(String s)
  {
    int limit = s.length() * 2;
    byte[] result = new byte[limit];
    char c;
    for (int i = 0; i < limit; i++)
      {
        c = s.charAt(i >>> 1);
364
        result[i] = (byte)(((i & 1) == 0) ? c >>> 8 : c);
365 366 367 368 369
      }
    return result;
  }

  /**
370
   * Dumps a byte array as a string, in a format that is easy to read for
371
   * debugging. The string <code>m</code> is prepended to the start of each
372 373 374
   * line.
   * <p>
   * If <code>offset</code> and <code>length</code> are omitted, the whole
375
   * array is used. If <code>m</code> is omitted, nothing is prepended to each
376 377
   * line.
   * 
378 379 380 381 382 383 384 385 386
   * @param data the byte array to be dumped.
   * @param offset the offset within <i>data</i> to start from.
   * @param length the number of bytes to dump.
   * @param m a string to be prepended to each line.
   * @return a string containing the result.
   */
  public static String dumpString(byte[] data, int offset, int length, String m)
  {
    if (data == null)
387
      return m + "null\n";
388 389
    StringBuffer sb = new StringBuffer(length * 3);
    if (length > 32)
390 391
      sb.append(m).append("Hexadecimal dump of ")
          .append(length).append(" bytes...\n");
392 393 394 395 396
    // each line will list 32 bytes in 4 groups of 8 each
    int end = offset + length;
    String s;
    int l = Integer.toString(length).length();
    if (l < 4)
397
      l = 4;
398 399 400 401 402 403 404 405 406
    for (; offset < end; offset += 32)
      {
        if (length > 32)
          {
            s = "         " + offset;
            sb.append(m).append(s.substring(s.length() - l)).append(": ");
          }
        int i = 0;
        for (; i < 32 && offset + i + 7 < end; i += 8)
407
          sb.append(toString(data, offset + i, 8)).append(' ');
408
        if (i < 32)
409 410
          for (; i < 32 && offset + i < end; i++)
            sb.append(byteToString(data[offset + i]));
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
        sb.append('\n');
      }
    return sb.toString();
  }

  public static String dumpString(byte[] data)
  {
    return (data == null) ? "null\n" : dumpString(data, 0, data.length, "");
  }

  public static String dumpString(byte[] data, String m)
  {
    return (data == null) ? "null\n" : dumpString(data, 0, data.length, m);
  }

  public static String dumpString(byte[] data, int offset, int length)
  {
    return dumpString(data, offset, length, "");
  }

  /**
432 433 434
   * Returns a string of 2 hexadecimal digits (most significant digit first)
   * corresponding to the lowest 8 bits of <code>n</code>.
   * 
435 436 437 438 439 440 441 442 443 444
   * @param n the byte value to convert.
   * @return a string of 2 hex characters representing the input.
   */
  public static String byteToString(int n)
  {
    char[] buf = { HEX_DIGITS[(n >>> 4) & 0x0F], HEX_DIGITS[n & 0x0F] };
    return new String(buf);
  }

  /**
445
   * Converts a designated byte array to a Base-64 representation, with the
446
   * exceptions that (a) leading 0-byte(s) are ignored, and (b) the character
447 448 449 450
   * '.' (dot) shall be used instead of "+' (plus).
   * <p>
   * Used by SASL password file manipulation primitives.
   * 
451 452
   * @param buffer an arbitrary sequence of bytes to represent in Base-64.
   * @return unpadded (without the '=' character(s)) Base-64 representation of
453
   *         the input.
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
   */
  public static final String toBase64(byte[] buffer)
  {
    int len = buffer.length, pos = len % 3;
    byte b0 = 0, b1 = 0, b2 = 0;
    switch (pos)
      {
      case 1:
        b2 = buffer[0];
        break;
      case 2:
        b1 = buffer[0];
        b2 = buffer[1];
        break;
      }
    StringBuffer sb = new StringBuffer();
    int c;
    boolean notleading = false;
    do
      {
        c = (b0 & 0xFC) >>> 2;
        if (notleading || c != 0)
          {
            sb.append(BASE64_CHARSET[c]);
            notleading = true;
          }
        c = ((b0 & 0x03) << 4) | ((b1 & 0xF0) >>> 4);
        if (notleading || c != 0)
          {
            sb.append(BASE64_CHARSET[c]);
            notleading = true;
          }
        c = ((b1 & 0x0F) << 2) | ((b2 & 0xC0) >>> 6);
        if (notleading || c != 0)
          {
            sb.append(BASE64_CHARSET[c]);
            notleading = true;
          }
        c = b2 & 0x3F;
        if (notleading || c != 0)
          {
            sb.append(BASE64_CHARSET[c]);
            notleading = true;
          }
        if (pos >= len)
499
          break;
500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516
        else
          {
            try
              {
                b0 = buffer[pos++];
                b1 = buffer[pos++];
                b2 = buffer[pos++];
              }
            catch (ArrayIndexOutOfBoundsException x)
              {
                break;
              }
          }
      }
    while (true);

    if (notleading)
517
      return sb.toString();
518 519 520 521
    return "0";
  }

  /**
522 523 524 525 526
   * The inverse function of the above.
   * <p>
   * Converts a string representing the encoding of some bytes in Base-64 to
   * their original form.
   * 
527 528
   * @param str the Base-64 encoded representation of some byte(s).
   * @return the bytes represented by the <code>str</code>.
529 530
   * @throws NumberFormatException if <code>str</code> is <code>null</code>,
   *           or <code>str</code> contains an illegal Base-64 character.
531 532 533 534 535 536
   * @see #toBase64(byte[])
   */
  public static final byte[] fromBase64(String str)
  {
    int len = str.length();
    if (len == 0)
537
      throw new NumberFormatException("Empty string");
538 539 540
    byte[] a = new byte[len + 1];
    int i, j;
    for (i = 0; i < len; i++)
541 542 543 544 545 546 547 548
      try
        {
          a[i] = (byte) BASE64_CHARS.indexOf(str.charAt(i));
        }
      catch (ArrayIndexOutOfBoundsException x)
        {
          throw new NumberFormatException("Illegal character at #" + i);
        }
549 550 551 552 553 554 555 556
    i = len - 1;
    j = len;
    try
      {
        while (true)
          {
            a[j] = a[i];
            if (--i < 0)
557
              break;
558 559
            a[j] |= (a[i] & 0x03) << 6;
            j--;
560
            a[j] = (byte)((a[i] & 0x3C) >>> 2);
561
            if (--i < 0)
562
              break;
563 564
            a[j] |= (a[i] & 0x0F) << 4;
            j--;
565
            a[j] = (byte)((a[i] & 0x30) >>> 4);
566
            if (--i < 0)
567
              break;
568 569 570 571
            a[j] |= (a[i] << 2);
            j--;
            a[j] = 0;
            if (--i < 0)
572
              break;
573 574 575 576 577 578 579 580
          }
      }
    catch (Exception ignored)
      {
      }
    try
      { // ignore leading 0-bytes
        while (a[j] == 0)
581
          j++;
582 583 584 585 586 587 588 589 590 591 592 593 594
      }
    catch (Exception x)
      {
        return new byte[1]; // one 0-byte
      }
    byte[] result = new byte[len - j + 1];
    System.arraycopy(a, j, result, 0, len - j + 1);
    return result;
  }

  // BigInteger utilities ----------------------------------------------------

  /**
595
   * Treats the input as the MSB representation of a number, and discards
596
   * leading zero elements. For efficiency, the input is simply returned if no
597 598
   * leading zeroes are found.
   * 
599 600
   * @param n the {@link BigInteger} to trim.
   * @return the byte array representation of the designated {@link BigInteger}
601
   *         with no leading 0-bytes.
602 603 604 605 606
   */
  public static final byte[] trim(BigInteger n)
  {
    byte[] in = n.toByteArray();
    if (in.length == 0 || in[0] != 0)
607
      return in;
608 609 610
    int len = in.length;
    int i = 1;
    while (in[i] == 0 && i < len)
611
      ++i;
612 613 614 615 616 617
    byte[] result = new byte[len - i];
    System.arraycopy(in, i, result, 0, len - i);
    return result;
  }

  /**
618 619
   * Returns a hexadecimal dump of the trimmed bytes of a {@link BigInteger}.
   * 
620 621 622 623 624 625 626 627
   * @param x the {@link BigInteger} to display.
   * @return the string representation of the designated {@link BigInteger}.
   */
  public static final String dump(BigInteger x)
  {
    return dumpString(trim(x));
  }
}