]> Cypherpunks repositories - gostls13.git/commit
math/big: move ProbablyPrime into its own source file
authorRuss Cox <rsc@golang.org>
Mon, 10 Oct 2016 20:03:13 +0000 (16:03 -0400)
committerRuss Cox <rsc@golang.org>
Tue, 11 Oct 2016 16:16:17 +0000 (16:16 +0000)
commit88562dc83ecc3e0c5ce85f22356cb7114e4756df
tree74df5a1b2590deb00027fb7b2166119791953b30
parent9927f25d711ec7aa0876e33e3bd174e09cc032bd
math/big: move ProbablyPrime into its own source file

A later CL will be adding more code here.
It will help to keep it separate from the other code.

Change-Id: I971ba53de819cd10991b51fdec665984939a5f9b
Reviewed-on: https://go-review.googlesource.com/30709
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/math/big/int.go
src/math/big/int_test.go
src/math/big/nat.go
src/math/big/prime.go [new file with mode: 0644]
src/math/big/prime_test.go [new file with mode: 0644]