mirror of
https://github.com/arnaucube/go-iden3-crypto.git
synced 2026-02-06 19:16:43 +01:00
Fix compat with 32 bit arch
This commit is contained in:
@@ -4,5 +4,12 @@ language: go
|
|||||||
go:
|
go:
|
||||||
- "1.12"
|
- "1.12"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
include:
|
||||||
|
- name: "Unit Tests 64 bit arch"
|
||||||
|
env: GOARCH="amd64"
|
||||||
|
- name: "Unit Test 32 bit arch"
|
||||||
|
env: GOARCH="386"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
- GO111MODULE=on
|
- GO111MODULE=on
|
||||||
|
|||||||
@@ -513,15 +513,33 @@ func (z *Element) String() string {
|
|||||||
|
|
||||||
// ToBigInt returns z as a big.Int in Montgomery form
|
// ToBigInt returns z as a big.Int in Montgomery form
|
||||||
func (z *Element) ToBigInt(res *big.Int) *big.Int {
|
func (z *Element) ToBigInt(res *big.Int) *big.Int {
|
||||||
bits := (*[4]big.Word)(unsafe.Pointer(z))
|
if bits.UintSize == 64 {
|
||||||
return res.SetBits(bits[:])
|
bits := (*[4]big.Word)(unsafe.Pointer(z))
|
||||||
|
return res.SetBits(bits[:])
|
||||||
|
} else {
|
||||||
|
var bits [8]big.Word
|
||||||
|
for i := 0; i < len(z); i++ {
|
||||||
|
bits[i*2] = big.Word(z[i])
|
||||||
|
bits[i*2+1] = big.Word(z[i] >> 32)
|
||||||
|
}
|
||||||
|
return res.SetBits(bits[:])
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// ToBigIntRegular returns z as a big.Int in regular form
|
// ToBigIntRegular returns z as a big.Int in regular form
|
||||||
func (z Element) ToBigIntRegular(res *big.Int) *big.Int {
|
func (z Element) ToBigIntRegular(res *big.Int) *big.Int {
|
||||||
z.FromMont()
|
z.FromMont()
|
||||||
bits := (*[4]big.Word)(unsafe.Pointer(&z))
|
if bits.UintSize == 64 {
|
||||||
return res.SetBits(bits[:])
|
bits := (*[4]big.Word)(unsafe.Pointer(&z))
|
||||||
|
return res.SetBits(bits[:])
|
||||||
|
} else {
|
||||||
|
var bits [8]big.Word
|
||||||
|
for i := 0; i < len(z); i++ {
|
||||||
|
bits[i*2] = big.Word(z[i])
|
||||||
|
bits[i*2+1] = big.Word(z[i] >> 32)
|
||||||
|
}
|
||||||
|
return res.SetBits(bits[:])
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// SetBigInt sets z to v (regular form) and returns z in Montgomery form
|
// SetBigInt sets z to v (regular form) and returns z in Montgomery form
|
||||||
@@ -548,8 +566,18 @@ func (z *Element) SetBigInt(v *big.Int) *Element {
|
|||||||
}
|
}
|
||||||
// v should
|
// v should
|
||||||
vBits := vv.Bits()
|
vBits := vv.Bits()
|
||||||
for i := 0; i < len(vBits); i++ {
|
if bits.UintSize == 64 {
|
||||||
z[i] = uint64(vBits[i])
|
for i := 0; i < len(vBits); i++ {
|
||||||
|
z[i] = uint64(vBits[i])
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
for i := 0; i < len(vBits); i++ {
|
||||||
|
if i%2 == 0 {
|
||||||
|
z[i/2] = uint64(vBits[i])
|
||||||
|
} else {
|
||||||
|
z[i/2] |= uint64(vBits[i]) << 32
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return z.ToMont()
|
return z.ToMont()
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user