diff options
Diffstat (limited to 'src/pkg/crypto/rand/util.go')
-rw-r--r-- | src/pkg/crypto/rand/util.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/pkg/crypto/rand/util.go b/src/pkg/crypto/rand/util.go index 50e5b162b..21608dbac 100644 --- a/src/pkg/crypto/rand/util.go +++ b/src/pkg/crypto/rand/util.go @@ -98,8 +98,6 @@ func Prime(rand io.Reader, bits int) (p *big.Int, err error) { return } } - - return } // Int returns a uniform random value in [0, max). @@ -130,6 +128,4 @@ func Int(rand io.Reader, max *big.Int) (n *big.Int, err error) { return } } - - return } |