File tree 3 files changed +3
-4
lines changed
compiler/natives/src/crypto/internal
3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ jobs:
175
175
- run :
176
176
name : Install Go
177
177
command : |
178
- choco install golang --version="<< pipeline.parameters.chocolatey_go_version >>" -my
178
+ choco install golang --version="<< pipeline.parameters.chocolatey_go_version >>" -my --force -y
179
179
go version
180
180
(Get-Command go).Path
181
181
[Environment]::SetEnvironmentVariable(
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ func Dec(b boring.BigInt) *big.Int {
33
33
return new (big.Int )
34
34
}
35
35
// Replacing original which uses unsafe:
36
- //x := unsafe.Slice((*big.Word)(&b[0]), len(b))
36
+ // x := unsafe.Slice((*big.Word)(&b[0]), len(b))
37
37
x := make ([]big.Word , len (b ))
38
38
for i , w := range b {
39
39
x [i ] = big .Word (w )
Original file line number Diff line number Diff line change 4
4
package nistec_test
5
5
6
6
import (
7
- "testing"
8
-
9
7
"crypto/elliptic"
10
8
"crypto/internal/nistec"
9
+ "testing"
11
10
)
12
11
13
12
func TestAllocations (t * testing.T ) {
You can’t perform that action at this time.
0 commit comments