blob: 6d684c249d13910e0eb1a4628a8b408543aef8ff [file] [log] [blame]
/*******************************************************************************
* Copyright (c) Intel Corporation
* Copyright (c) 2017
*
* 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 org.apache.felix.fileinstall.plugins.installer;
import java.util.Arrays;
public final class Hash {
private final static char[] hexArray = "0123456789abcdef".toCharArray();
private final String algo;
private final byte[] bytes;
public Hash(String algo, byte[] bytes) {
this.algo = algo;
this.bytes = bytes;
}
public String getAlgo() {
return this.algo;
}
public byte[] getBytes() {
return this.bytes;
}
@Override
public String toString() {
return new StringBuilder()
.append(this.algo)
.append(':')
.append(bytesToHex(this.bytes))
.toString();
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.algo == null) ? 0 : this.algo.hashCode());
result = prime * result + Arrays.hashCode(this.bytes);
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
Hash other = (Hash) obj;
if (this.algo == null) {
if (other.algo != null) {
return false;
}
} else if (!this.algo.equals(other.algo)) {
return false;
}
if (!Arrays.equals(this.bytes, other.bytes)) {
return false;
}
return true;
}
private static String bytesToHex(byte[] bytes) {
char[] hexChars = new char[bytes.length * 2];
for (int j = 0; j < bytes.length; j++) {
int v = bytes[j] & 0xFF;
hexChars[j * 2] = hexArray[v >>> 4];
hexChars[j * 2 + 1] = hexArray[v & 0x0F];
}
return new String(hexChars);
}
}