Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Smith <brian@briansmith.org>2016-07-27 23:44:31 +0300
committerCQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>2016-07-28 00:26:02 +0300
commit574f37ff92c23a7d819eeb0756b205732240557d (patch)
tree30cc1b998ae664cc44b0f5ff485e635205ee07ca
parent842ae6cad06c0c80886021b8fc86b0ffc16ab59c (diff)
gofmt crypto/bn/check_bn_tests.go.
Some gerrit git hook says this is necessary. Change-Id: I8a7a0a0e6732688c965b43824fe54b2db79a4919 Reviewed-on: https://boringssl-review.googlesource.com/8990 Reviewed-by: David Benjamin <davidben@google.com> Commit-Queue: David Benjamin <davidben@google.com> CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
-rw-r--r--crypto/bn/check_bn_tests.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/check_bn_tests.go b/crypto/bn/check_bn_tests.go
index 68e79e04..9a1b65e7 100644
--- a/crypto/bn/check_bn_tests.go
+++ b/crypto/bn/check_bn_tests.go
@@ -238,7 +238,7 @@ func main() {
r = r.Mod(r, test.Values["P"])
checkResult(test, "ModSqrt ^ 2 (mod P)", "A", r)
- if (test.Values["P"].Cmp(bigTwo) > 0) {
+ if test.Values["P"].Cmp(bigTwo) > 0 {
pMinus1Over2 := new(big.Int).Sub(test.Values["P"], bigOne)
pMinus1Over2.Rsh(pMinus1Over2, 1)