messagedigest.java

来自「This is a resource based on j2me embedde」· Java 代码 · 共 138 行

JAVA
138
字号
/* *    * * Copyright  1990-2007 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 com.sun.midp.crypto;/** * This MessageDigest class provides applications the functionality of a * message digest algorithm, such as MD5 or SHA. * Message digests are secure one-way hash functions that take arbitrary-sized * data and output a fixed-length hash value. * * <p>A <code>MessageDigest</code> object starts out initialized. The data is  * processed through it using the <code>update</code> * method. At any point {@link #reset() reset} can be called * to reset the digest. Once all the data to be updated has been * updated, the <code>digest</code> method should  * be called to complete the hash computation. * * <p>The <code>digest</code> method can be called once for a given number  * of updates. After <code>digest</code> has been called,  * the <code>MessageDigest</code> * object is reset to its initialized state. */public abstract class MessageDigest {    /** Protected constructor. */    protected MessageDigest() {    }        /**     * Generates a <code>MessageDigest</code> object that implements     * the specified digest     * algorithm.      *     * @param algorithm the name of the algorithm requested.      * See Appendix A in the      * Java Cryptography Architecture API Specification &amp; Reference     * for information about standard algorithm names.     *     * @return a MessageDigest object implementing the specified     * algorithm.     *     * @exception NoSuchAlgorithmException if the algorithm is     * not available in the caller's environment.       */    public static MessageDigest getInstance(String algorithm)             throws NoSuchAlgorithmException {        if (algorithm == null || algorithm.length() == 0) {            throw new IllegalArgumentException();        }        algorithm = algorithm.toUpperCase();        if (algorithm.equals("MD2")) {            return new MD2();        } else if (algorithm.equals("MD5")) {            return new MD5();        } else if (algorithm.equals("SHA-1")) {            return new SHA();        }        throw new NoSuchAlgorithmException(algorithm);    }        /**      * Gets the message digest algorithm.     * @return algorithm implemented by this MessageDigest object     */    public abstract String getAlgorithm();        /**      * Gets the length (in bytes) of the hash.     * @return byte-length of the hash produced by this object     */    public abstract int getDigestLength();        /**     * Accumulates a hash of the input data. This method is useful when     * the input data to be hashed is not available in one byte array.      * @param inBuf input buffer of data to be hashed     * @param inOff offset within inBuf where input data begins     * @param inLen length (in bytes) of data to be hashed     * @see #doFinal(byte[], int, int, byte[], int)     */    public abstract void update(byte[] inBuf, int inOff, int inLen);        /**     * Completes the hash computation by performing final operations     * such as padding. The digest is reset after this call is made.     *     * @param buf output buffer for the computed digest     *     * @param offset offset into the output buffer to begin storing the digest     *     * @param len number of bytes within buf allotted for the digest     *     * @return the number of bytes placed into <code>buf</code>     *      * @exception DigestException if an error occurs.     */    public abstract int digest(byte[] buf, int offset, int len)        throws DigestException;    /**      * Resets the MessageDigest to the initial state for further use.     */    public abstract void reset();         /**      * Clones the MessageDigest object.     * @return a clone of this object     */    public abstract Object clone();}

⌨️ 快捷键说明

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