aboutsummaryrefslogtreecommitdiffstats
path: root/odl-aaa-moon/aaa/aaa-authn-api/src/main/java/org/opendaylight/aaa/api/SHA256Calculator.java
blob: 903fe3def2503da38ee7b253a1aa29885ccc02ba (plain)
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
/*
 * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
 * and is available at http://www.eclipse.org/legal/epl-v10.html
 */
package org.opendaylight.aaa.api;

import java.security.MessageDigest;
import java.util.concurrent.locks.ReentrantReadWriteLock;
import java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock;
import javax.xml.bind.DatatypeConverter;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * @author Sharon Aicler (saichler@cisco.com)
 */
public class SHA256Calculator {

    private static final Logger LOG = LoggerFactory.getLogger(SHA256Calculator.class);

    private static MessageDigest md = null;
    private static ReentrantReadWriteLock lock = new ReentrantReadWriteLock();
    private static WriteLock writeLock = lock.writeLock();

    public static String generateSALT() {
        StringBuffer salt = new StringBuffer();
        for (int i = 0; i < 12; i++) {
            int random = (int) (Math.random() * 24 + 1);
            salt.append((char) (65 + random));
        }
        return salt.toString();
    }

    public static String getSHA256(byte data[], String salt) {
        byte SALT[] = salt.getBytes();
        byte temp[] = new byte[data.length + SALT.length];
        System.arraycopy(data, 0, temp, 0, data.length);
        System.arraycopy(SALT, 0, temp, data.length, SALT.length);

        if (md == null) {
            try {
                writeLock.lock();
                if (md == null) {
                    try {
                        md = MessageDigest.getInstance("SHA-256");
                    } catch (Exception err) {
                        LOG.error("Error calculating SHA-256 for SALT", err);
                    }
                }
            } finally {
                writeLock.unlock();
            }
        }

        byte by[] = null;

        try {
            writeLock.lock();
            md.update(temp);
            by = md.digest();
        } finally {
            writeLock.unlock();
        }
        //Make sure the outcome hash does not contain special characters
        return DatatypeConverter.printBase64Binary(by);
    }

    public static String getSHA256(String password, String salt) {
        return getSHA256(password.getBytes(), salt);
    }
}