Bug 1383651
Summary: | perl-Crypt-OpenSSL-DSA-0.15-5.fc26 FTBFS: dereferencing pointer to incomplete type 'DSA {aka struct dsa_st}' | ||
---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | Petr Pisar <ppisar> |
Component: | perl-Crypt-OpenSSL-DSA | Assignee: | Petr Pisar <ppisar> |
Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
Severity: | unspecified | Docs Contact: | |
Priority: | unspecified | ||
Version: | rawhide | CC: | perl-devel, wjhns174 |
Target Milestone: | --- | Keywords: | Patch, Reopened |
Target Release: | --- | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | perl-Crypt-OpenSSL-DSA-0.15-7.fc26 | Doc Type: | If docs needed, set a value |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2016-11-01 08:49:32 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: | |||
Bug Depends On: | |||
Bug Blocks: | 1383740 |
Description
Petr Pisar
2016-10-11 11:21:17 UTC
I posted a fix to the upstream bug report. No reply from upstream in two weeks. I will apply it into Fedora. After applying the fix, perl-Net-DNS-SEC tests fail in: my $dsa = Crypt::OpenSSL::DSA->new(); # private key $dsa->set_p( decode_base64 $private->prime ); $dsa->set_q( decode_base64 $private->subprime ); $dsa->set_g( decode_base64 $private->base ); → $dsa->set_priv_key( decode_base64 $private->private_value ); With message: Could not set a key at lib/Net/DNS/SEC/DSA.pm line 75. signature generation failed at t/10-keyset.t line 112. The issue is new OpenSSL does support setting a private key before a public key. I added a code that allows it on the XS level. |