summaryrefslogtreecommitdiffstats
path: root/zarb-ml/mageia-dev/2012-July/017127.html
diff options
context:
space:
mode:
Diffstat (limited to 'zarb-ml/mageia-dev/2012-July/017127.html')
-rw-r--r--zarb-ml/mageia-dev/2012-July/017127.html169
1 files changed, 169 insertions, 0 deletions
diff --git a/zarb-ml/mageia-dev/2012-July/017127.html b/zarb-ml/mageia-dev/2012-July/017127.html
new file mode 100644
index 000000000..9b703839b
--- /dev/null
+++ b/zarb-ml/mageia-dev/2012-July/017127.html
@@ -0,0 +1,169 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-dev] Old OpenSSL HOWTO [was Re: openssl regression]
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-dev%40mageia.org?Subject=Re%3A%20%5BMageia-dev%5D%20Old%20OpenSSL%20HOWTO%20%5Bwas%20Re%3A%20openssl%20regression%5D&In-Reply-To=%3CCA%2BCX%2BbgRvMQ%3D%2BG135x8P1YpoobSV36A%3Dn5BeZrb_00kfZFawAA%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="017126.html">
+ <LINK REL="Next" HREF="017129.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-dev] Old OpenSSL HOWTO [was Re: openssl regression]</H1>
+ <B>Pascal Terjan</B>
+ <A HREF="mailto:mageia-dev%40mageia.org?Subject=Re%3A%20%5BMageia-dev%5D%20Old%20OpenSSL%20HOWTO%20%5Bwas%20Re%3A%20openssl%20regression%5D&In-Reply-To=%3CCA%2BCX%2BbgRvMQ%3D%2BG135x8P1YpoobSV36A%3Dn5BeZrb_00kfZFawAA%40mail.gmail.com%3E"
+ TITLE="[Mageia-dev] Old OpenSSL HOWTO [was Re: openssl regression]">pterjan at gmail.com
+ </A><BR>
+ <I>Wed Jul 4 01:56:18 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="017126.html">[Mageia-dev] Old OpenSSL HOWTO [was Re: openssl regression]
+</A></li>
+ <LI>Next message: <A HREF="017129.html">[Mageia-dev] Old OpenSSL HOWTO [was Re: openssl regression]
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#17127">[ date ]</a>
+ <a href="thread.html#17127">[ thread ]</a>
+ <a href="subject.html#17127">[ subject ]</a>
+ <a href="author.html#17127">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, Jul 3, 2012 at 4:54 PM, Pascal Terjan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">pterjan at gmail.com</A>&gt; wrote:
+&gt;<i> On Mon, Jun 11, 2012 at 3:15 PM, Shlomi Fish &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">shlomif at shlomifish.org</A>&gt; wrote:
+</I>&gt;&gt;<i> Hi all,
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> here is a small HOWTO about using OpenSSL with Mageia Cauldron applications
+</I>&gt;&gt;<i> that broke with the new version of the &quot;openssl&quot; package (1.0.1), such as svn
+</I>&gt;&gt;<i> with <A HREF="https://">https://</A> URLs:
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> 1. Download openssl-1.0.0j.tar.gz from:
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> <A HREF="http://www.openssl.org/source/">http://www.openssl.org/source/</A>
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> 2. Unpack it.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> 3. Use the following shell script to configure it (you can customise the
+</I>&gt;&gt;<i> ossl_pref prefix to your liking:
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> [QUOTE]
+</I>&gt;&gt;<i> #!/bin/bash
+</I>&gt;&gt;<i> ossl_pref=&quot;$HOME/apps/openssl&quot;
+</I>&gt;&gt;<i> ./config --prefix=&quot;$ossl_pref&quot; --openssldir=&quot;$ossl_pref/openssl&quot; shared
+</I>&gt;&gt;<i> [/QUOTE]
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> There is more coverage of this here:
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> <A HREF="http://www.devside.net/guides/linux/openssl">http://www.devside.net/guides/linux/openssl</A>
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> 4. Add the following lines to your .bashrc:
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> [QUOTE]
+</I>&gt;&gt;<i> oldssl()
+</I>&gt;&gt;<i> {
+</I>&gt;&gt;<i> export LD_LIBRARY_PATH=&quot;$HOME/apps/openssl/lib/:$LD_LIBRARY_PATH&quot;
+</I>&gt;&gt;<i> }
+</I>&gt;&gt;<i> [/QUOTE]
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> 5. Now when you want to use svn with <A HREF="https://">https://</A> or whatever just type &quot;oldssl&quot;
+</I>&gt;&gt;<i> first.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> -------------
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> I've tried to fix svn in Cauldron, but rebuilding it didn't help, and trying to
+</I>&gt;&gt;<i> rebuild libneon0.27 caused &quot;%check&quot; to fail. This was reported here:
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> <A HREF="http://lists.manyfish.co.uk/pipermail/neon/2012-June/001473.html">http://lists.manyfish.co.uk/pipermail/neon/2012-June/001473.html</A>
+</I>&gt;&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> I am not on the ML so can't reply to the thread but debug.log seems to
+</I>&gt;<i> be the interesting one:
+</I>&gt;<i>
+</I>&gt;<i> ******* Running test 18: client_cert_pkcs12 ********
+</I>&gt;<i> HTTP session to <A HREF="https://localhost:7777">https://localhost:7777</A> begins.
+</I>&gt;<i> ssl: SNI enabled by default.
+</I>&gt;<i> ssl: Match common name 'ignored.example.com' against ''
+</I>&gt;<i> Identity match for '': bad
+</I>&gt;<i> ssl: Match common name 'nowhere.example.com' against ''
+</I>&gt;<i> Identity match for '': bad
+</I>&gt;<i> Running pre_send hooks
+</I>&gt;<i> Sending request headers:
+</I>&gt;<i> GET /foo HTTP/1.1^M
+</I>&gt;<i> Keep-Alive: ^M
+</I>&gt;<i> Connection: TE, Keep-Alive^M
+</I>&gt;<i> TE: trailers^M
+</I>&gt;<i> Host: localhost:7777^M
+</I>&gt;<i> ^M
+</I>&gt;<i> Sending request-line and headers:
+</I>&gt;<i> Doing DNS lookup on localhost...
+</I>&gt;<i> req: Connecting to 127.0.0.1:7777
+</I>&gt;<i> Doing SSL negotiation.
+</I>&gt;<i> Supplying client certificate.
+</I>&gt;<i> sess: Closing connection.
+</I>&gt;<i> sess: Connection closed.
+</I>&gt;<i> Request ends, status 0 class 0xx, error line:
+</I>&gt;<i> SSL handshake failed: SSL error: digest too big for rsa key
+</I>&gt;<i> Running destroy hooks.
+</I>&gt;<i> Request ends.
+</I>
+Also, <A HREF="https://github.com/joyent/node/pull/2991">https://github.com/joyent/node/pull/2991</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="017126.html">[Mageia-dev] Old OpenSSL HOWTO [was Re: openssl regression]
+</A></li>
+ <LI>Next message: <A HREF="017129.html">[Mageia-dev] Old OpenSSL HOWTO [was Re: openssl regression]
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#17127">[ date ]</a>
+ <a href="thread.html#17127">[ thread ]</a>
+ <a href="subject.html#17127">[ subject ]</a>
+ <a href="author.html#17127">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-dev">More information about the Mageia-dev
+mailing list</a><br>
+</body></html>