Lines Matching refs:prime
310 const { group, primeLength, prime, generator } = options;
312 if (prime != null)
313 throw new ERR_INCOMPATIBLE_OPTION_PAIR('group', 'prime');
324 if (prime != null) {
326 throw new ERR_INCOMPATIBLE_OPTION_PAIR('prime', 'primeLength');
328 validateBuffer(prime, 'options.prime');
333 'At least one of the group, prime, or primeLength options');
341 prime != null ? prime : primeLength,