keygenerationparameters.java

来自「内容:基于jdk1.4的加密算法的具体实现」· Java 代码 · 共 49 行

JAVA
49
字号
package org.bouncycastle.crypto;import java.security.SecureRandom;/** * The base class for parameters to key generators. */public class KeyGenerationParameters{    private SecureRandom    random;    private int             strength;    /**     * initialise the generator with a source of randomness     * and a strength (in bits).     *     * @param random the random byte source.     * @param strength the size, in bits, of the keys we want to produce.     */    public KeyGenerationParameters(        SecureRandom    random,        int             strength)    {        this.random = random;        this.strength = strength;    }    /**     * return the random source associated with this     * generator.     *     * @return the generators random source.     */    public SecureRandom getRandom()    {        return random;    }    /**     * return the bit strength for keys produced by this generator,     *     * @return the strength of the keys this generator produces (in bits).     */    public int getStrength()    {        return strength;    }}

⌨️ 快捷键说明

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