Home | History | Annotate | Download | only in spec

Lines Matching refs:seed

48     private final byte[] seed;
89 * {@code b}, and the {@code seed} used for curve generation.
93 * @param seed the bytes used during curve generation for later
102 BigInteger b, byte[] seed) {
117 if (seed != null) {
118 this.seed = seed.clone();
120 this.seed = null;
153 * Returns the seeding bytes {@code seed} used
155 * @return the seeding bytes {@code seed}. A new
159 if (seed == null) return null;
160 else return seed.clone();