All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.jkniv.jaas.MD5 Maven / Gradle / Ivy

There is a newer version: 0.3.6
Show newest version
/* 
 * JKNIV JAAS,
 * Copyright (C) 2017, the original author or authors.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License.
 * 
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software Foundation, Inc., 
 * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */
package net.sf.jkniv.jaas;

import java.io.UnsupportedEncodingException;
import java.nio.charset.Charset;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

final class MD5 implements Cipher
{
    private static final String ALGO = Cipher.MD5;
    private Charset charset;
    private MessageDigest md5;
    
    public MD5()
    {
        init();
    }

    public MD5(Charset charset)
    {
        init();
        this.charset = charset;
    }

    private void init()
    {
        try
        {
            md5 = MessageDigest.getInstance(ALGO);
        }
        catch (NoSuchAlgorithmException e)
        {
            throw new RuntimeException("Cannot get instance of [" + ALGO + "]", e);
        }
        this.charset = Charset.forName("UTF8");
    }
    

    
    public synchronized String encode(String phrase) throws UnsupportedEncodingException
    {
        StringBuffer md5Result = new StringBuffer();
        
        md5.reset();
        byte[] hash = md5.digest(phrase.getBytes(charset));
        
        for (int i = 0; i < hash.length; i++) {
            if ((0xff & hash[i]) < 0x10) {
                md5Result.append("0"
                        + Integer.toHexString((0xFF & hash[i])));
            } else {
                md5Result.append(Integer.toHexString(0xFF & hash[i]));
            }
        }
        
        return md5Result.toString();
    }

    public String decode(String phrase)
    {
        throw new UnsupportedOperationException("Cannot decode ["+ALGO+"] algorithm!");
    }
    
    
    @Override
    public String[] encodeWithSalt(String phrase) throws UnsupportedEncodingException
    {
        throw new UnsupportedOperationException("["+ALGO+"] unsupported encode with salt");
    }
    
    @Override
    public boolean checkCredential(String... credentials)
    {
        String plainCredential = credentials[0];
        String hashedCredential = credentials[1];
        boolean checked = false;
        try
        {
            return hashedCredential.equals(encode(plainCredential));
        }
        catch (UnsupportedEncodingException e)
        {
            e.printStackTrace();
            // TODO e.printStackTrace(); try catch block
        }
        return checked;
    }
    public Charset getCharset()
    {
        return charset;
    }

    public String getAlgorithm()
    {
        return ALGO;
    }
    
    public boolean supportDecode()
    {
        return false;
    }

    @Override
    public boolean hasSalt()
    {
        return false;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy