SecBSD's official ports repository
This commit is contained in:
commit
2c0afcbbf3
64331 changed files with 5339189 additions and 0 deletions
15
security/p5-Crypt-OpenSSL-ECDSA/patches/patch-ECDSA_xs
Normal file
15
security/p5-Crypt-OpenSSL-ECDSA/patches/patch-ECDSA_xs
Normal file
|
@ -0,0 +1,15 @@
|
|||
Make ECDSA_do_sign_ex() (which is pointless without ECDSA_sign_setup())
|
||||
fall back to ECDSA_do_sign().
|
||||
|
||||
Index: ECDSA.xs
|
||||
--- ECDSA.xs.orig
|
||||
+++ ECDSA.xs
|
||||
@@ -75,7 +75,7 @@ ECDSA_do_sign_ex(const unsigned char *dgst, const BIGN
|
||||
STRLEN dgst_len;
|
||||
CODE:
|
||||
dgst = (const unsigned char *)SvPV(ST(0), dgst_len);
|
||||
- RETVAL = ECDSA_do_sign_ex(dgst, dgst_len, kinv, rp, eckey);
|
||||
+ RETVAL = ECDSA_do_sign(dgst, dgst_len, eckey);
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue