randomgenerator.java

来自「kmlnjlkj nlkjlkjkljl okopokipoipo oipipi」· Java 代码 · 共 39 行

JAVA
39
字号
package org.bouncycastle.crypto.prng;/** * Generic interface for objects generating random bytes. */public interface RandomGenerator{    /**     * Add more seed material to the generator.     *     * @param seed a byte array to be mixed into the generator's state.     */    void addSeedMaterial(byte[] seed);    /**     * Add more seed material to the generator.     *     * @param seed a long value to be mixed into the generator's state.     */    void addSeedMaterial(long seed);    /**     * Fill bytes with random values.     *     * @param bytes byte array to be filled.     */    void nextBytes(byte[] bytes);    /**     * Fill part of bytes with random values.     *     * @param bytes byte array to be filled.     * @param start index to start filling at.     * @param len length of segment to fill.     */    void nextBytes(byte[] bytes, int start, int len);}

⌨️ 快捷键说明

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