⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sha3.java

📁 This is a resource based on j2me embedded,if you dont understand,you can connection with me .
💻 JAVA
字号:
/* * @(#)SHA3.java	1.6 06/10/10 * * Copyright  1990-2008 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER *  * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License version * 2 only, as published by the Free Software Foundation.  *  * This program 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 * General Public License version 2 for more details (a copy is * included at /legal/license.txt).  *  * You should have received a copy of the GNU General Public License * version 2 along with this work; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA  *  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa * Clara, CA 95054 or visit www.sun.com if you need additional * information or have any questions.  */package sun.security.provider;import java.security.*;import java.math.BigInteger;/** * This class implements the Secure Hash Algorithm SHA-384 developed by * the National Institute of Standards and Technology along with the * National Security Agency. * * <p>It implements java.security.MessageDigestSpi, and can be used  * through Java Cryptography Architecture (JCA), as a pluggable  * MessageDigest implementation. *  * @version     1.6 10/10/06 * @author	Valerie Peng */public class SHA3 extends SHA5 {    private static final int LENGTH = 48;    private static final long [] INITIAL_HASHES = {	0xcbbb9d5dc1059ed8L, 0x629a292a367cd507L,	0x9159015a3070dd17L, 0x152fecd8f70e5939L,	0x67332667ffc00b31L, 0x8eb44a8768581511L,	0xdb0c2e0d64f98fa7L, 0x47b5481dbefa4fa4L    };    public SHA3() {	init();    }    private SHA3(SHA3 that) {	super((SHA5)that);    }    void init() {	super.init();	setInitialHash(INITIAL_HASHES);    }     /**     * Return the length of the digest in bytes     */    protected int engineGetDigestLength() {	return (LENGTH);    }        /**     * Computes the final hash and returns the final value as a     * byte[48] array. The object is reset to be ready for further     * use, as specified in the JavaSecurity MessageDigest     * specification.      */    protected byte[] engineDigest() {	byte[] sha5hashvalue = super.engineDigest();	byte[] hashvalue = new byte[LENGTH];	System.arraycopy(sha5hashvalue, 0, hashvalue, 0, LENGTH);	return hashvalue;    }    /**     * Resets the buffers and hash value to start a new hash.     */    protected void engineReset() {	init();    }    /**     * Computes the final hash and returns the final value as a     * byte[48] array. The object is reset to be ready for further     * use, as specified in the JavaSecurity MessageDigest     * specification.     * @param hashvalue buffer to hold the digest     * @param offset offset for storing the digest     * @param len length of the buffer     * @return length of the digest in bytes     */    protected int engineDigest(byte[] hashvalue, int offset, int len)	throws DigestException {	if (len < LENGTH)		throw new DigestException("partial digests not returned");	if (hashvalue.length - offset < LENGTH)		throw new DigestException("insufficient space in the output " +					"buffer to store the digest");	super.performDigest(hashvalue, offset, LENGTH);	return LENGTH;    }    /*     * Clones this object.     */    public Object clone() {        SHA3 that = null;        that = new SHA3(this);        return that;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -