aboutsummaryrefslogtreecommitdiffstats
path: root/Solvers/VIATRA-Solver/org.eclipse.viatra.dse/src/org/eclipse/viatra/dse/util/Hasher.java
blob: 0c5d7eba2a7a95a6c14875236b6376ec50b0d6cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*******************************************************************************
 * Copyright (c) 2010-2014, Miklos Foldenyi, Andras Szabolcs Nagy, Abel Hegedus, Akos Horvath, Zoltan Ujhelyi and Daniel Varro
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0 which is available at
 * http://www.eclipse.org/legal/epl-v20.html.
 * 
 * SPDX-License-Identifier: EPL-2.0
 *******************************************************************************/
package org.eclipse.viatra.dse.util;

import java.math.BigInteger;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

import org.eclipse.viatra.dse.api.DSEException;

/**
 * Utility class that encapsulates a {@link MessageDigest} instance to aid calculating hash values more easily, and to
 * reuse a {@link MessageDigest} instance.
 * 
 */
public final class Hasher {
    private MessageDigest md;

    private static final int HEX = 16;

    private Hasher(MessageDigest md) {
        this.md = md;
    }

    /**
     * Calculates and returns a hash value.
     * 
     * @param data
     *            the data to be hashed in a {@link String}.
     * @return the hash value in some {@link String} representation.
     */
    public String hash(String data) {
        md.update(data.getBytes(), 0, data.length());
        return new String(md.digest());
    }

    @SuppressWarnings("unused")
    private String alternateHashBest(String data) {
        md.update(data.getBytes(), 0, data.length());
        return new String(md.digest());
    }

    @SuppressWarnings("unused")
    private String alternateHashSecondBest(String data) {
        md.update(data.getBytes(), 0, data.length());
        return new BigInteger(1, md.digest()).toString(HEX);
    }

    @SuppressWarnings("unused")
    private String alternateHashThirdBest(String data) {
        md.update(data.getBytes(), 0, data.length());
        byte[] array = md.digest();
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < array.length; i++) {
            sb.append(Integer.toHexString((int) array[i]));
        }
        return sb.toString();
    }

    /**
     * Returns a {@link Hasher} with an internal {@link MessageDigest} that is based on the protocol named
     * {@code protocoll}.
     * 
     * @param protocoll
     *            the name of the hash algorythm.
     * @return the initialized {@link Hasher}
     * 
     * @throws DSEException
     *             on initialization failure.
     */
    public static Hasher getHasher(String protocoll) {
        try {
            return new Hasher(MessageDigest.getInstance(protocoll));
        } catch (NoSuchAlgorithmException e) {
            throw new DSEException(e);
        }
    }

    public static final String SHA1_PROTOCOLL = "SHA-1";
}