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

📄 signer.java

📁 J2me自动登录的源代码实例 有需要的朋友可以下载
💻 JAVA
字号:
package org.bouncycastle.crypto;//Download by http://www.codefans.net/** * Generic signer interface for hash based and message recovery signers. */public interface Signer {    /**     * Initialise the signer for signing or verification.     *      * @param forSigning true if for signing, false otherwise     * @param param necessary parameters.     */    public void init(boolean forSigning, CipherParameters param);    /**     * update the internal digest with the byte b     */    public void update(byte b);    /**     * update the internal digest with the byte array in     */    public void update(byte[] in, int off, int len);    /**     * generate a signature for the message we've been loaded with using     * the key we were initialised with.     */    public byte[] generateSignature()        throws CryptoException, DataLengthException;    /**     * return true if the internal state represents the signature described     * in the passed in array.     */    public boolean verifySignature(byte[] signature);        /**     * reset the internal state     */    public void reset();}

⌨️ 快捷键说明

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