Here you can find the source of checkSum(byte[] b, int offset, int length)
Parameter | Description |
---|---|
b | the array to calculate checksum on |
offset | the starting index in the array |
length | the number of bytes to check; <b>must</b> be a multiple of 4 |
public static long checkSum(byte[] b, int offset, int length)
//package com.java2s; /*/*from w w w . j ava 2s . c om*/ * Copyright 2010 Google Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ public class Main { /** * Calculate an OpenType checksum from the array. * @param b the array to calculate checksum on * @param offset the starting index in the array * @param length the number of bytes to check; <b>must</b> be a multiple of 4 * @return checksum */ public static long checkSum(byte[] b, int offset, int length) { long checkSum = 0; for (int i = offset; i < length; i += 4) { for (int j = 0; j < 4; j++) { if (j + i < length) { checkSum += (b[j + i] & 0xff) << (24 - 8 * j); } } } return checkSum & 0xffffffffL; } }