Skip to content

Commit

Permalink
fix:remove commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
mertakman committed Dec 10, 2024
1 parent d20fd44 commit d510d91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions patches/0004-Add-OpenSSL-crypto-backend.patch
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ index 00000000000000..e6695dd66b1d02
+var Dec = bbig.Dec
diff --git a/src/crypto/internal/backend/openssl_linux.go b/src/crypto/internal/backend/openssl_linux.go
new file mode 100644
index 00000000000000..89ba8d7f698b41
index 00000000000000..a264fa42af8198
--- /dev/null
+++ b/src/crypto/internal/backend/openssl_linux.go
@@ -0,0 +1,387 @@
Expand Down Expand Up @@ -549,7 +549,7 @@ index 00000000000000..89ba8d7f698b41
+ return openssl.NewPublicKeyDSA(openssl.DSAParameters{p, q, g}, y)
+}
+
+func SignDSA(priv *PrivateKeyDSA, hash []byte) (r, s openssl.BigInt, error) {
+func SignDSA(priv *PrivateKeyDSA, hash []byte) (r, s openssl.BigInt, err error) {
+ sig, err := openssl.SignDSA(priv, hash)
+ if err != nil {
+ return nil, err
Expand Down

0 comments on commit d510d91

Please sign in to comment.