de.greenrobot.common.hash.FNV32 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-common Show documentation
Show all versions of java-common Show documentation
General purpose utilities for Android and Java projects (aka java-common)
The newest version!
/*
* Copyright (C) 2014 Markus Junginger, greenrobot (http://greenrobot.de)
*
* 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.
*/
package de.greenrobot.common.hash;
import java.util.zip.Checksum;
/** Hash function FNV-1a (http://www.isthe.com/chongo/tech/comp/fnv). */
public class FNV32 implements Checksum {
private final static int INITIAL_VALUE = 0x811C9DC5;
private final static int MULTIPLIER = 16777619;
private int hash = INITIAL_VALUE;
@Override
public void update(int b) {
hash ^= 0xff & b;
hash *= MULTIPLIER;
}
@Override
public void update(byte[] b, int off, int len) {
int stop = off + len;
for (int i = off; i < stop; i++) {
hash ^= 0xff & b[i];
hash *= MULTIPLIER;
// This optimization of the multiplication might work in C, but not in Java (~2 times slower)
// hash += (hash << 1) + (hash << 4) + (hash << 7) + (hash << 8) + (hash << 24);
}
}
@Override
public long getValue() {
return hash & 0xffffffffL;
}
@Override
public void reset() {
hash = INITIAL_VALUE;
}
}