File tree 3 files changed +3
-11
lines changed
3 files changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ module go.dedis.ch/kyber/v4
3
3
go 1.20
4
4
5
5
require (
6
- github.com/cloudflare/circl v1.3.7
6
+ github.com/cloudflare/circl v1.3.9
7
7
github.com/consensys/gnark-crypto v0.12.1
8
8
github.com/jonboulle/clockwork v0.4.0
9
9
github.com/kilic/bls12-381 v0.1.0
Original file line number Diff line number Diff line change 1
1
github.com/bits-and-blooms/bitset v1.13.0 h1:bAQ9OPNFYbGHV6Nez0tmNI0RiEu7/hxlYJRUA0wFAVE =
2
2
github.com/bits-and-blooms/bitset v1.13.0 /go.mod h1:7hO7Gc7Pp1vODcmWvKMRA9BNmbv6a/7QIWpPxHddWR8 =
3
- github.com/cloudflare/circl v1.3.7 h1:qlCDlTPz2n9fu58M0Nh1J/JzcFpfgkFHHX3O35r5vcU =
4
- github.com/cloudflare/circl v1.3.7 /go.mod h1:sRTcRWXGLrKw6yIGJ+l7amYJFfAXbZG0kBSc8r4zxgA =
3
+ github.com/cloudflare/circl v1.3.9 h1:QFrlgFYf2Qpi8bSpVPK1HBvWpx16v/1TZivyo7pGuBE =
4
+ github.com/cloudflare/circl v1.3.9 /go.mod h1:PDRU+oXvdD7KCtgKxW95M5Z8BpSCJXQORiZFnBQS5QU =
5
5
github.com/consensys/bavard v0.1.13 h1:oLhMLOFGTLdlda/kma4VOJazblc7IM5y5QPd2A/YjhQ =
6
6
github.com/consensys/bavard v0.1.13 /go.mod h1:9ItSMtA/dXMAiL7BG6bqW2m3NdSEObYWoH223nGHukI =
7
7
github.com/consensys/gnark-crypto v0.12.1 h1:lHH39WuuFgVHONRl3J0LRBtuYdQTumFSDtJF7HpyG8M =
Original file line number Diff line number Diff line change @@ -76,10 +76,6 @@ func TestZKCryptoVectorsG1Compressed(t *testing.T) {
76
76
tests , err := filepath .Glob (deserializationG1Tests )
77
77
require .NoError (t , err )
78
78
79
- // Remove from tests "deserialization_fails_with_b_flag_and_a_flag_true.yaml", failing on Circl (index 6)
80
- // https://github.com/cloudflare/circl/issues/499 - Remove the line when the issue is fixed
81
- tests = append (tests [:6 ], tests [7 :]... )
82
-
83
79
for _ , testPath := range tests {
84
80
t .Run (testPath , func (t * testing.T ) {
85
81
testFile , err := os .Open (testPath )
@@ -127,10 +123,6 @@ func TestZKCryptoVectorsG2Compressed(t *testing.T) {
127
123
tests , err := filepath .Glob (deserializationG2Tests )
128
124
require .NoError (t , err )
129
125
130
- // Remove from tests "deserialization_fails_with_b_flag_and_a_flag_true.yaml", failing on Circl (index 6)
131
- // https://github.com/cloudflare/circl/issues/499 - Remove the line when the issue is fixed
132
- tests = append (tests [:6 ], tests [7 :]... )
133
-
134
126
for _ , testPath := range tests {
135
127
t .Run (testPath , func (t * testing.T ) {
136
128
testFile , err := os .Open (testPath )
You can’t perform that action at this time.
0 commit comments