Crypt::SSLeay + OpenSSL 0.9.8

Ask a Question related to PERL Modules, Design and Development.

  1. #1

    Default Crypt::SSLeay + OpenSSL 0.9.8

    IRC #news (yeah!) drawed my attention to

    * rssbot [annocpan] Crypt::SSLeay -
    [url]http://annocpan.org/~CHAMAS/Crypt-SSLeay-0.51/SSLeay.pm#note_963[/url]

    which reads:
    --8<---
    thowland (2006-07-20 13:59:15)
    « § »

    It looks like Crypt::SSLeay isn't compatible with openSSL 0.9.8b (the
    latest version as of 7/2006).
    There's a discussion at [url]http://rt.cpan.org/Public/Bug/Display.html?id=16735[/url]

    that covers a minor modification to the XS file that allows it to test
    correctly.
    -->8---

    That RT entry is very interresting, as it has a fix, but I'm sure most of
    CPAN users
    are unable to figure out how and what is to be changed.

    I would like to see a 0.52 release, but I'm not sure if the maintainer is
    still active
    and/or actively maintaining the module. I mailed him, but got no reply yet.
    H.Merijn Brand Guest

  2. Similar Questions and Discussions

    1. Crypt::SSLeay Installation Failure
      I seem to have a recurring problem installing Crypt::SSLeay on my Red Hat Enterprise 4 systems. Whether I install in manually by downloading and...
    2. LWP::UserAgent and Crypt::SSLeay question
      Hi, I need help in modifying a LWP script that I wrote a while ago that use https, cookie and accept client redirection. Now, I need to make...
    3. LWP with Crypt::SSLeay or Net::SSLeay with OpenSSL v0.97c hanging( 500 read timeout )
      Hello, I do not know if this should go to this list or the OpenSSL list. It sounds like a OpenSSL bug, but maybe someone can verify.
    4. How to install Crypt::SSLeay using PPM on Wintel
      I'm not even an IT person, so please be nice. I need to automate downloading data from a third party, and they provided a Perl script that...
    5. Crypt::SSLeay
      I am tryping to get Crypt::SSLeay to run under Windows. From CPAN, the documentation says that Activestate has a compiled version available...
  3. #2

    Default Re: Crypt::SSLeay + OpenSSL 0.9.8


    "H.Merijn Brand" <h.m.brand@xs4all.nl> wrote in message
    ..
    ..
    >
    > That RT entry is very interresting, as it has a fix, but I'm sure most of
    > CPAN users
    > are unable to figure out how and what is to be changed.
    >
    Yes, it's a bit confusing. Looks to me that 3 different fixes have been
    proposed:

    1)Change line 110 of SSLeay.xs from:
    SSLeay_add_all_algorithms();
    to:
    SSLeay_add_ssl_algorithms();

    2) Simply remove (or comment out) line 110 of SSLeay.xs.

    3) Change line 124 from an empty line (as it currently is) to:
    SSL_library_init();

    If that's correct it might be a good idea to post something along those
    lines to RT so that others can easily follow what's needed. If you have a
    recommendation on which of the fixes is best, it wouldn't hurt to specify
    your preference, too. Number 2) looks a little simplistic to me, and I
    wonder if it offers the milage of 1) and/or 3) .... but I'm not in a
    position to test.

    I think Gisle Aas is still active, n'est-ce pas ??
    He might still be able to upload a patched version to that namespace if
    Joshua can't be bothered doing it.

    Cheers,
    Rob


    Sisyphus Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139