home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 November / Chip_1998-11_cd.bin / tema / Cafe / main.bin / Adler32.java < prev    next >
Text File  |  1997-05-20  |  2KB  |  80 lines

  1. /*
  2.  * @(#)Adler32.java    1.11 97/01/27
  3.  * 
  4.  * Copyright (c) 1995, 1996 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * This software is the confidential and proprietary information of Sun
  7.  * Microsystems, Inc. ("Confidential Information").  You shall not
  8.  * disclose such Confidential Information and shall use it only in
  9.  * accordance with the terms of the license agreement you entered into
  10.  * with Sun.
  11.  * 
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  13.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  14.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
  16.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  17.  * THIS SOFTWARE OR ITS DERIVATIVES.
  18.  * 
  19.  * CopyrightVersion 1.1_beta
  20.  * 
  21.  */
  22.  
  23. package java.util.zip;
  24.  
  25. /**
  26.  * A class that can be used to compute the Adler-32 checksum of a data
  27.  * stream. An Adler-32 checksum is almost as reliable as a CRC-32 but
  28.  * can be computed much faster.
  29.  *
  30.  * @see        Checksum
  31.  * @version     1.11, 01/27/97
  32.  * @author     David Connelly
  33.  */
  34. public
  35. class Adler32 implements Checksum {
  36.     private int adler = 1;
  37.  
  38.     /*
  39.      * Loads the ZLIB library.
  40.      */
  41.     static {
  42.     System.loadLibrary("zip");
  43.     }
  44.  
  45.     /**
  46.      * Updates checksum with specified byte.
  47.      */
  48.     public void update(int b) {
  49.     update1(b);
  50.     }
  51.  
  52.     /**
  53.      * Updates checksum with specified array of bytes.
  54.      */
  55.     public native void update(byte[] b, int off, int len);
  56.  
  57.     /**
  58.      * Updates checksum with specified array of bytes.
  59.      */
  60.     public void update(byte[] b) {
  61.     update(b, 0, b.length);
  62.     }
  63.  
  64.     /**
  65.      * Resets checksum to initial value.
  66.      */
  67.     public void reset() {
  68.     adler = 1;
  69.     }
  70.  
  71.     /**
  72.      * Returns checksum value.
  73.      */
  74.     public long getValue() {
  75.     return (long)adler & 0xffffffffL;
  76.     }
  77.  
  78.     private native void update1(int b);
  79. }
  80.