@@ -17,7 +17,6 @@ func TestCaseSensitivity(t *testing.T) {
17
17
func TestApi (t * testing.T ) {
18
18
allSchemes := schemes .All ()
19
19
for _ , scheme := range allSchemes {
20
- scheme := scheme
21
20
t .Run (scheme .Name (), func (t * testing.T ) {
22
21
if scheme == nil {
23
22
t .Fatal ()
@@ -122,7 +121,6 @@ func Example() {
122
121
func BenchmarkGenerateKeyPair (b * testing.B ) {
123
122
allSchemes := schemes .All ()
124
123
for _ , scheme := range allSchemes {
125
- scheme := scheme
126
124
b .Run (scheme .Name (), func (b * testing.B ) {
127
125
for i := 0 ; i < b .N ; i ++ {
128
126
_ , _ , _ = scheme .GenerateKey ()
@@ -136,7 +134,6 @@ func BenchmarkSign(b *testing.B) {
136
134
opts := & sign.SignatureOpts {}
137
135
for _ , scheme := range allSchemes {
138
136
msg := []byte (fmt .Sprintf ("Signing with %s" , scheme .Name ()))
139
- scheme := scheme
140
137
_ , sk , _ := scheme .GenerateKey ()
141
138
b .Run (scheme .Name (), func (b * testing.B ) {
142
139
for i := 0 ; i < b .N ; i ++ {
@@ -151,7 +148,6 @@ func BenchmarkVerify(b *testing.B) {
151
148
opts := & sign.SignatureOpts {}
152
149
for _ , scheme := range allSchemes {
153
150
msg := []byte (fmt .Sprintf ("Signing with %s" , scheme .Name ()))
154
- scheme := scheme
155
151
pk , sk , _ := scheme .GenerateKey ()
156
152
sig := scheme .Sign (sk , msg , opts )
157
153
b .Run (scheme .Name (), func (b * testing.B ) {
0 commit comments