Skip to content

Commit

Permalink
fix GenerateParametersDSA name
Browse files Browse the repository at this point in the history
  • Loading branch information
qmuntal committed Dec 11, 2024
1 parent 635f4f1 commit 3596ae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion patches/0004-Add-OpenSSL-crypto-backend.patch
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ index 00000000000000..5f512abef72865
+}
+
+func GenerateDSAParameters(l, n int) (p, q, g openssl.BigInt, err error) {
+ params, err := openssl.GenerateDSAParameters(l, n)
+ params, err := openssl.GenerateParametersDSA(l, n)
+ return params.P, params.Q, params.G, err
+}
diff --git a/src/crypto/rsa/boring.go b/src/crypto/rsa/boring.go
Expand Down

0 comments on commit 3596ae3

Please sign in to comment.