Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
9ded4e33
Unverified
Commit
9ded4e33
authored
Nov 13, 2020
by
Marius van der Wijden
Committed by
GitHub
Nov 13, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypto/bn256: better comments for u, P and Order (#21836)
parent
a19b4235
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
constants.go
crypto/bn256/google/constants.go
+3
-2
No files found.
crypto/bn256/google/constants.go
View file @
9ded4e33
...
...
@@ -13,13 +13,14 @@ func bigFromBase10(s string) *big.Int {
return
n
}
// u is the BN parameter that determines the prime
: 1868033³
.
// u is the BN parameter that determines the prime.
var
u
=
bigFromBase10
(
"4965661367192848881"
)
//
p
is a prime over which we form a basic field: 36u⁴+36u³+24u²+6u+1.
//
P
is a prime over which we form a basic field: 36u⁴+36u³+24u²+6u+1.
var
P
=
bigFromBase10
(
"21888242871839275222246405745257275088696311157297823662689037894645226208583"
)
// Order is the number of elements in both G₁ and G₂: 36u⁴+36u³+18u²+6u+1.
// Order - 1 = 2^28 * 3^2 * 13 * 29 * 983 * 11003 * 237073 * 405928799 * 1670836401704629 * 13818364434197438864469338081.
var
Order
=
bigFromBase10
(
"21888242871839275222246405745257275088548364400416034343698204186575808495617"
)
// xiToPMinus1Over6 is ξ^((p-1)/6) where ξ = i+9.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment