diff options
Diffstat (limited to 'ext/node/ops/crypto/primes.rs')
-rw-r--r-- | ext/node/ops/crypto/primes.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/node/ops/crypto/primes.rs b/ext/node/ops/crypto/primes.rs index d03398f02..15aa643ad 100644 --- a/ext/node/ops/crypto/primes.rs +++ b/ext/node/ops/crypto/primes.rs @@ -8,7 +8,7 @@ use num_traits::Zero; use rand::Rng; use std::ops::Deref; -pub struct Prime(num_bigint_dig::BigUint); +pub struct Prime(pub num_bigint_dig::BigUint); impl Prime { pub fn generate(n: usize) -> Self { |