|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnet.rim.device.api.util.CRC32
public final class CRC32
Computes the 32-bit CRC (checksum) for a data stream.
Based on FCS-32 specified in RFC 1662 (STD 51).
Note: The byte ordering of the resulting checksum value depends on the protocol in which the CRC is used. The ordering used in a specified protocol might be different from the ordering used in this implementation. The output of this implementation can be reversed when used with such a protocol.
Field Summary | ||
---|---|---|
static int |
INITIAL_VALUE
Initial checksum value used before updates. |
Method Summary | ||
---|---|---|
static int |
update(int crc,
byte[] b)
Updates the checksum with the specified array of bytes. |
|
static int |
update(int crc,
byte[] b,
int offset,
int length)
Updates the checksum with a section of provided array of bytes. |
|
static int |
update(int crc,
int b)
Updates the checksum with the specified byte. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final int INITIAL_VALUE
Method Detail |
---|
public static int update(int crc, int b)
crc
- The checksum to update.b
- The byte with which to update the checksum.
public static int update(int crc, byte[] b)
crc
- The checksum to update.b
- The byte array with which to update the checksum.
public static int update(int crc, byte[] b, int offset, int length)
crc
- The checksum to update.b
- A byte array containing the section with which to update the checksum.off
- The first element in the byte array used to update the checksum.len
- The number of bytes in the section used to update the checksum.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright 1999-2011 Research In Motion Limited. 295 Phillip Street, Waterloo, Ontario, Canada, N2L 3W8. All Rights Reserved.
Java is a trademark of Oracle America Inc. in the US and other countries.
Legal