Re: openssl 3.0.0 valgrind failure on OPENSSL_ia32_cpuid - retract, sorry

2021-08-27 Thread Ken Goldman
On 8/27/2021 3:46 PM, Ken Goldman wrote: I run valgrind on all my software to find memory leaks.  This worked for openssl 1.0.2 and 1.1.1, but fails with 3.0.0.  Suggestions? Sorry, I updated valgrind and all is well.

RE: OpenSSL 0.9.8 w/ sendmail 8.13.4 (Sorry, last one was HTML)

2005-09-22 Thread Lester, Bob
Hi Victor, I'm new at this so please bear with me. Since the build fails, there's no sendmail executable to run ldd on. Is there something else I should be checking with ldd? Thanks! <*BobL*> | | Check the runpath of the resulting object, run ldd, ... Perhaps your | libraries ar

Re: OpenSSL 0.9.8 w/ sendmail 8.13.4 (Sorry, last one was HTML)

2005-09-22 Thread Victor Duchovni
On Thu, Sep 22, 2005 at 10:12:39AM -0600, Lester, Bob wrote: > Hi Viktor, > > Thanks for the pointer. Tried that and got the same error. Any idea > how to find out if these versions will work together? I've scanned the > sendmail & openSSL doc, but haven't found anything definitive. >

RE: OpenSSL 0.9.8 w/ sendmail 8.13.4 (Sorry, last one was HTML)

2005-09-22 Thread Lester, Bob
--- | From: [EMAIL PROTECTED] | [mailto:[EMAIL PROTECTED] Behalf Of Victor Duchovni | Sent: Thursday, September 22, 2005 9:50 AM | To: openssl-users@openssl.org | Subject: Re: OpenSSL 0.9.8 w/ sendmail 8.13.4 (Sorry, last | one was HTML) | | | On Thu, Sep 22, 2005 at 09:30:08AM -060

Re: OpenSSL 0.9.8 w/ sendmail 8.13.4 (Sorry, last one was HTML)

2005-09-22 Thread Victor Duchovni
On Thu, Sep 22, 2005 at 09:30:08AM -0600, Lester, Bob wrote: > Hi All, > > I've cross-posted this on comp.mail.sendmail. Maybe folks here have an > idea? > > I'm running into a compile problem when trying to add TLS support to > sendmail. This is on a SunOS 5.9 box, GCC 3.3.2 (exis

OpenSSL 0.9.8 w/ sendmail 8.13.4 (Sorry, last one was HTML)

2005-09-22 Thread Lester, Bob
Hi All, I've cross-posted this on comp.mail.sendmail. Maybe folks here have an idea? I'm running into a compile problem when trying to add TLS support to sendmail. This is on a SunOS 5.9 box, GCC 3.3.2 (existing), with OpenSSL 0.9.8 (new install - seemed to install fine) and sendma

Crypto Blowfish in C++ Builder 5, sorry the last one was in HTML, this one is Text

2005-09-22 Thread Thomas Wieczorek
Hello, i want to implement the Blowfish encryption in a Borland C++ Builder project. But when i execute the function in different TForms, i get different encryptions, e.g. ín the first form i get password = "§" and in the other form i get password = "%" when i want to encrypt the same string.

Re: Sorry a bit OT...but I'm not able to compile smime.c!

2004-03-14 Thread Dr. Stephen Henson
On Sun, Mar 14, 2004, [EMAIL PROTECTED] wrote: > I tried but I receive this error... > > ...>nmake -f ms\ntdll.mak > > Microsoft (R) Program Maintenance Utility Version 6.00.8168.0 > Copyright (C) Microsoft Corp 19

Re: Sorry a bit OT...but I'm not able to compile smime.c!

2004-03-14 Thread deck80
I tried but I receive this error... ...>nmake -f ms\ntdll.mak Microsoft (R) Program Maintenance Utility Version 6.00.8168.0 Copyright (C) Microsoft Corp 1988-1998. All rights reserved. Building OpenSSL cl /

Re: Sorry a bit OT...but I'm not able to compile smime.c!

2004-03-13 Thread Dr. Stephen Henson
On Sat, Mar 13, 2004, [EMAIL PROTECTED] wrote: > Probably I shouldn't bother you with problems like that...but I tried to > compile apps/smime.c with Visual C++6 and it gave me a lot of error... > 58 error... > > smime.obj : error LNK2001: unresolved external symbol _CRYPTO_free > smime.obj : err

Sorry a bit OT...but I'm not able to compile smime.c!

2004-03-13 Thread deck80
Probably I shouldn't bother you with problems like that...but I tried to compile apps/smime.c with Visual C++6 and it gave me a lot of error... 58 error... smime.obj : error LNK2001: unresolved external symbol _CRYPTO_free smime.obj : error LNK2001: unresolved external symbol _BIO_free_all ...and

Re: Sorry, but I can't read encrypted RSA key from file

2003-09-10 Thread Alexander Krizhanovskiy
> http://www.openssl.org/support/faq.html#PROG5 > http://www.openssl.org/support/faq.html#PROG6 > http://www.openssl.org/support/faq.html#PROG7 It realy helped. Before that I didn't understand my bug. Thanks. __ OpenSSL Project

Re: Sorry, but I can't read encrypted RSA key from file

2003-09-10 Thread Dr. Stephen Henson
On Wed, Sep 10, 2003, Alexander Krizhanovskiy wrote: > Thanks, > > This is correct code: > > char *passwd = "123456"; > FILE F1 = fopen("key.pem", "wb"); > PEM_write_RSAPrivateKey(F1, rsa, EVP_des_cbc(), NULL, 0, NULL, passwd); > fclose(F1); > . > FILE F2 = fopen("key.pem", "rb"); > RSA *rsa

Re: Sorry, but I can't read encrypted RSA key from file

2003-09-10 Thread Alexander Krizhanovskiy
Thanks, This is correct code: char *passwd = "123456"; FILE F1 = fopen("key.pem", "wb"); PEM_write_RSAPrivateKey(F1, rsa, EVP_des_cbc(), NULL, 0, NULL, passwd); fclose(F1); . FILE F2 = fopen("key.pem", "rb"); RSA *rsa_2; rsa_2 = PEM_read_RSAPrivateKey(F2, NULL, NULL, passwd); char str[256];

Re: Sorry, but I can't read encrypted RSA key from file

2003-09-08 Thread Dr. Stephen Henson
c(), NULL, 0, NULL, passwd); > fclose(F1); > . > FILE F2 = fopen("key.pem", "rb"); > RSA *rsa_2 = RSA_new(); > rsa_2 = PEM_read_RSAPrivateKey(F1, NULL, NULL, passwd); > > and after that rsa2 = NULL, why? > Sorry, but I can't find answer for my ques

Sorry, but I can't read encrypted RSA key from file

2003-09-08 Thread Alexander Krizhanovskiy
t;, "rb"); RSA *rsa_2 = RSA_new(); rsa_2 = PEM_read_RSAPrivateKey(F1, NULL, NULL, passwd); and after that rsa2 = NULL, why? Sorry, but I can't find answer for my question. Thanks, Alexander __ OpenSSL Project

Sorry, I meant both the new and old clsid stopped working.

2003-02-03 Thread Mark Liu
sorry for the confusion. --- [EMAIL PROTECTED] wrote: > http://support.microsoft.com/default.aspx?scid=kb;en-us;323172 > for all > versions > > > > > Mark Liu <[EMAIL PROTECTED]> > Sent by: [EMAIL PROTECTED] > 02/03/03 03:54 PM > Please respo

Re: OpenSSL and iPlanet problems . Sorry, earlier mail had wrongdata

2002-10-23 Thread Richard Levitte - VMS Whacker
In message <[EMAIL PROTECTED]> on Wed, 23 Oct 2002 13:10:04 -0400, Ashwin C Uthappa <[EMAIL PROTECTED]> said: ashwin.uthappa> OpenSSL> s_client -connect 10.10.10.114:10001 -debug -state -ssl3 ashwin.uthappa> CONNECTED(0004) ashwin.uthappa> SSL_connect:before/connect initialization ashwin.utha

Re: OpenSSL and iPlanet problems . Sorry, earlier mail had wrongdata

2002-10-23 Thread Ashwin C Uthappa
Hi, In my earlier mail, I'd mistakenly connected to the http port and was getting a handshake failure (naturally!!). I am now connecting to the engine on the actual port which has been reserved for the SSL communication. The result : OpenSSL> s_client -connect 10.10.10.114:10001 -debug -state

Re: Sorry

2001-12-17 Thread dave
Hey Tim, if you are concerned about security, you may want to change to an e-mail client other than OutLook, or LookOut as I call it - there have been a number of exploits targeted at OutLook... -dave On Mon, 17 Dec 2001, Tim Pushor wrote: > Please excuse my previous post in HTML. Outlook autom

Sorry

2001-12-17 Thread Tim Pushor
Please excuse my previous post in HTML. Outlook automatically used HTML as I replied to a message that was HTML formatted, and I didn't notice. Tim __ OpenSSL Project http://www.openssl.org User S

Sorry. Ignore this message. Only a test.

2001-05-07 Thread Alan Candido
Sorry. Ignore this message. Only a test. __ OpenSSL Project http://www.openssl.org User Support Mailing List[EMAIL PROTECTED] Automated List Manager

OK, dumb question ( very sorry!)

2001-02-06 Thread Greg_Banschbach/Sandata%SANDATA
Ok, I see my question posted in the mailing list. and I want to make a follow up question. How? Very sorry . Sincerely, Greg __ OpenSSL Project http://www.openssl.org User Support

Re: Dumb question- Sorry

2000-12-26 Thread Louis LeBlanc
n this? > > -Original Message- > From: Michael Conley [mailto:[EMAIL PROTECTED]] > Sent: Thursday, December 21, 2000 10:16 PM > To: '[EMAIL PROTECTED]' > Subject: Dumb question- Sorry > > I am very new to SSL. I have set up my Apache web server on Red Hat Linux &g

RE: Dumb question- Sorry

2000-12-26 Thread Michael Conley
Did anybody have any thoughts on this? -Original Message- From: Michael Conley [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 21, 2000 10:16 PM To: '[EMAIL PROTECTED]' Subject: Dumb question- Sorry I am very new to SSL. I have set up my Apache web server on Red Hat L

Re: Dumb question- Sorry

2000-12-22 Thread Robert B. Easter
On Friday 22 December 2000 01:16, Michael Conley wrote: > I am very new to SSL. I have set up my Apache web server on Red Hat Linux > 7. I have installed OpenSSL/mod_ssl. I can now attach to the web server > using either http or https. > > My question is how do I control which files can be acce

RE: Dumb question- Sorry

2000-12-22 Thread Thomas Bätzler
Hi, > Michael Conley [SMTP:[EMAIL PROTECTED]] asked: [...] > My question is how do I control which files can be accessed via http and > which can only be accessed by https? [...] That's rather an Apache or mod_ssl than an OpenSSL question. Basically, you might want to consider to create a virtu

Dumb question- Sorry

2000-12-21 Thread Michael Conley
I am very new to SSL. I have set up my Apache web server on Red Hat Linux 7. I have installed OpenSSL/mod_ssl. I can now attach to the web server using either http or https. My question is how do I control which files can be accessed via http and which can only be accessed by https? I don't

Sorry... PKCS5 cert chain question

2000-11-06 Thread Aaron Jackson
Sorry about the last message it was user error on my part. Please disregard the previous message, as it was incomplete. This is the finished version... I'm trying to get a handle on what needs to be done to get a commercial product I just started administrating to provide ssl access to

Ack sorry more info openssl - cant get it to compile

2000-09-20 Thread Jeremy Schoemaker
Sorry I am using RH linux 6.1 if their is any more info I can provide please let me know Hello, When i run ./config it runs all nice then I try to make and i get errors about .h files file not found, so i look but the files are their... sometimes... sometimes not so I hack all my .h files

Re: forgot report sorry

2000-08-22 Thread Crispin Wellington
On Tue, 22 Aug 2000, lee wrote: > Crispin Wellington wrote: > > > Your compiling environment is broken. make sure /usr/include or whatever > > your include path is is in the current include path. > > > > Crispin > > > > not sure what you me

forgot report sorry

2000-08-21 Thread lee
here is complete email including the report for install error: make atttempt then "make report" following. [root@dialup-209 openssl-0.9.5a]# make making all in crypto... make[1]: Entering directory `/usr/local/openssl-0.9.5a/crypto' ( echo "#ifndef MK1MF_BUILD"; \ echo " /* auto-gene

Sorry, error compiling

2000-02-18 Thread Pedro Garre
Hi, I want to add ssl to my apache 1.3.11 server but I've got an error compiling the openssl 0.9.4 : ./config works ok make fails with the message: ar r ../../libcrypto.a bio_lib.o bio_cb.o bio_err.o bss_mem.o bss_null.o bss_fd.o bss_file.o bss_sock.o bss_conn.o bf_null.o bf_buff.o b_print.o b_d

Sorry about this...

2000-01-22 Thread Mark Hill
Sorry about this, just checking that this is all working fine... -- Mark Hill - Software Engineer, CLi Connect Ltd. 4 Walnut Tree Park, Guildford, Surrey, GU1 4TR, UK Email: mailto:[EMAIL PROTECTED] or mailto:[EMAIL PROTECTED] WWW: http://www.clic.co.uk or http

Sorry for the openssl-announce message

1999-05-19 Thread Ralf S. Engelschall
Sorry for the message which was sent out to some subscribers of openssl-announce today (it went out not to all, I've stopped processing). It was my fault in approving the contents (it _was_ OpenSSL specific), but overlooking the fact that the poster used openssl-annnounce instead of op