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

📄 randomgenerator.java

📁 kmlnjlkj nlkjlkjkljl okopokipoipo oipipipo i
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -