Source File
prime.go
Belonging Package
github.com/gotd/td/internal/crypto
package cryptoimport// Prime checks that given number is prime.func ( *big.Int) bool {// TODO(tdakkota): maybe it should be smaller?// 1 - 1/4^64 is equal to 0.9999999999999999999999999999999999999970612641229442812300781587//// TDLib uses nchecks = 64// See https://github.com/tdlib/td/blob/d161323858a782bc500d188b9ae916982526c262/tdutils/td/utils/BigNum.cpp#L155.const = 64// ProbablyPrime is mutating, so we need a copyreturn .ProbablyPrime()}
![]() |
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |