From joelmeulenberg at yahoo.com Thu May 3 21:14:13 2001 From: joelmeulenberg at yahoo.com (Joel Meulenberg) Date: Wed Aug 4 00:01:13 2004 Subject: Subject: Heeeelp with SSL3 client/server Message-ID: <20010504021413.63068.qmail@web13002.mail.yahoo.com> This message initially bounced because the subject line matched one of Majordomo's magic patterns (in this case /^subject:\s*help\b/i ). So, you see, Tom's original subject line didn't sounds quite so desperate; I changed it to read "heeeelp" so that the pattern wouldn't match when I resent it to the list. : ) +Joel --- owner-grand-rapids-pm-list@pm.org wrote: > From: owner-grand-rapids-pm-list@pm.org > Date: Thu, 3 May 2001 14:49:15 -0500 > To: grand-rapids-pm-list-approval@pm.org > Subject: BOUNCE grand-rapids-pm-list@pm.org: Admin request: > /^subject:\s*help\b/i > > From joelm@bigfoot.com Thu May 3 14:49:14 2001 > Received: from pcr7.pcr.com (pcr7.pcr.com [204.27.235.47]) > by gocho.pm.org (8.11.3/8.11.3) with ESMTP id f43JnEU16138 > for ; Thu, 3 May 2001 > 14:49:14 -0500 > Message-ID: <3AF1B5D6.DAA7CA00@pcr7.pcr.com> > Date: Thu, 03 May 2001 15:47:34 -0400 > From: Tom Laird > MIME-Version: 1.0 > To: grand-rapids-pm-list@happyfunball.pm.org > Subject: Help with SSL3 client/server > Content-Type: text/plain; charset=us-ascii > Content-Transfer-Encoding: 7bit > > Hey all, > > I could use a little advise... > > I need to implement symmetric client/server processes that use SSL3 > to > exchange > and authenicate digital certificates using the RSA algorithm. > Additionally the messages > that are exchanged are to be encrypted using the DES-CBC algorithm. > Message > integrity is to be insured by SHA-1. > > The system where these processes are to reside has perl 5.005 > installed. What module(s), > I'm assuming that they exist, implement the SSL3 requirements for > this > project? Are there > any idiosyncracies I should be aware of? Any suggestions for SSL3 > reference material > would also be appreciated. > > Thanks for your input... > > Tom > > > > __________________________________________________ Do You Yahoo!? Yahoo! Auctions - buy the things you want at great prices http://auctions.yahoo.com/ From sween at modelm.org Fri May 18 06:41:50 2001 From: sween at modelm.org (sween) Date: Wed Aug 4 00:01:13 2004 Subject: Perl 6 is just nasty Message-ID: syntax changes? jeez someone go flick Larry Wall's ear. gsub.line(/perl/,"ruby") -- --- -sween | M | http://www.modelm.org --- "force feedback computing since 1984." From matthew_heusser at mcgraw-hill.com Fri May 18 06:36:20 2001 From: matthew_heusser at mcgraw-hill.com (matthew_heusser@mcgraw-hill.com) Date: Wed Aug 4 00:01:13 2004 Subject: Perl 6 RFC Process Message-ID: <200105181148.f4IBmME30057@gocho.pm.org> Want to become involved in the [coveted] Perl 6 RFC process? Read about it here: http://www.perl.com/pub/2001/05/03/wall.html If you don't like it, don't whine about it, change it. If not you, who? If not now, when? regards, Matt H. From ed at pcr7.pcr.com Thu May 31 10:47:46 2001 From: ed at pcr7.pcr.com (Ed Eddington) Date: Wed Aug 4 00:01:13 2004 Subject: Perl news Message-ID: <01C0E9C7.836A0120@xsta56.pcr.com> >From a Perl.com newsletter... The big news this week is that Brian Ingerson has released the latest version of Inline, version 0.40. Inline is an absolutely fantastic module which makes it very, very simple to interface C code with your Perl programs. The name "Inline" comes from the way the code is fed to the Inline module as strings in your Perl program: You say something like use Inline C => "int add(int x, int y) { return x + y; }" and Inline goes away and parses the C code, determines how it should look as a Perl function, creates the magic linkage between C and Perl, compiles it, and caches the compiled copy. The net result is that you now have a new Perl subroutine, 'add', which takes two arguments and adds them together.