Re: What does the "e-value" do?

2001-02-15 Thread Deng Lor
Firstly i'd like to thank you for your help. I was always considering that e should be selected at random, so i'm really surprised at the answer. I'm eager to know why 65537 is selected as the e, and are there any fact proofing it is better than other primes seleted out randomly? - Origina

Re: RSA Encrypt/Decrypt fails

2001-02-15 Thread Jan Zoellner
At 15.02.01 18:19, you wrote: >What's more, the attack I was refering to, as someone made me notice already, >requires "e" messages, not 2, so it's more difficult to do if you use a >large e,like 65535. I´ve read this post as well. Thanks for all the info, guys, the code is now working as inten

RE: RSA Encrypt/Decrypt fails

2001-02-15 Thread Jan Zoellner
At 16.02.01 01:52, you wrote: >I'm guessing that RSA_eay_private_encrypt uses padding >type 1 since this function isn't intended for encrypting data, just signing >it, because data that can be decrypted with a "public" key isn't really >secure. You´re right about that. The main goal is indeed pro

Setting the bit to 128

2001-02-15 Thread Auteria Wally Winzer Jr.
Is there an option to openssl that enables you to set the bit to 128? I want to generate the cert using the CA.pl script, but by default it sets the bit to 40. I'd like to set the bit to 128. Can someone provide the syntax for this option? Thanks. - Wally Winzer Jr. S/MIME Cryptographic Sign

problems on AIX

2001-02-15 Thread Benjamin Collar
Howdy I'm writing to both openssl-users and net-snmp-users because I'm not sure where the bug really lies, but here's the deal: I've compiled net-snmp latest stable and openssl latest stable with -g using gcc on AIX 4.2.1. All net-snmp apps segfault instantly. This will cease to happen if I don'

RE: RSA Encrypt/Decrypt fails

2001-02-15 Thread Reddie, Steven
PKCS#1 padding type 1 pads with 0xff bytes, and padding type 2 pads with random data (terminated with a 0x00 byte). You probably observed that RSA_eay_public_encrypt uses padding type 2 (random data), though RSA_eay_private_encrypt uses padding type 1. Since "RSA encryption" typically means encr

Re: crashes on AIX 4.2.1

2001-02-15 Thread Benjamin Collar
On Wed, 14 Feb 2001, Richard Levitte - VMS Whacker wrote: > [EMAIL PROTECTED] is there for reporting bugs. allrighty, thanks. > However, could you try to build OpenSSL with debugging options so the > backtrace could provide a little more info. It might be a good thing > to do the same with your

CRL generation help

2001-02-15 Thread Evan Cross
This is the Postfix program at host speedy.server.zoom.co.uk. I'm sorry to have to inform you that the message returned below could not be delivered to one or more destinations. For further assistance, please contact <[EMAIL PROTECTED]> If you do so, please include this problem report. You can

Re: Subject: [Crypt::SSLeay] compile problems on HPUX

2001-02-15 Thread Lutz Jaenicke
On Thu, Feb 15, 2001 at 12:35:52PM -0700, BLOCK,RYAN (HP-PaloAlto,ex1) wrote: > I am trying to install the Crypt:SSLeay module on an HPUX 10.20 system, and > am having trouble with it. Is this module even able to run on HPUX? Here > is the error that I am receiving. > > == >

IE problems with SSL handshake

2001-02-15 Thread Joshua C. Bergeron
Greetings   A few weeks ago I began to look at possibilities into implementing SSL into a webserver I work with.  I began by looking at numerous examples (as well as ordering the SSL/TLS book I have heard so much about, but it still has not arrived), and after a lot of playing around I a

No Subject

2001-02-15 Thread Evan Cross
Hi, I need to load a certificate from disk so I can check to see if it validity before time is in the future. I've been trying to use PEM_read_X509 but it crashes. Anyone got any examples that show how to successfully load a certificate from disk and view its contents. I can't find anything

Subject: [Crypt::SSLeay] compile problems on HPUX

2001-02-15 Thread BLOCK,RYAN (HP-PaloAlto,ex1)
Hello, I am trying to install the Crypt:SSLeay module on an HPUX 10.20 system, and am having trouble with it. Is this module even able to run on HPUX? Here is the error that I am receiving. == Writing Makefile for Crypt::SSLeay # make test /opt/ansic/bin/cc -c -I/us

Re: symmetric key produced by Diffie-Helman alg. not equal in both sides

2001-02-15 Thread Joseph Ashwood
- Original Message - From: "Bruker, Ohad" <[EMAIL PROTECTED]> > All the basic stuff you mentioned is implemented right. > It is already *WORKING* on Linux and Windows platforms without any problems. > I encounter this problem probably because Solaris does not support random > device !!! >

Re: What does the "e-value" do?

2001-02-15 Thread Joseph Ashwood
First a bit of background. RSA is this: p,q primes N=pq e=prime that is not a factor of p-1 or q-1 and not equal to p or q d = e^-1 mod (p-1)(q-1) public key = {e,N} private key = {d, N} Encryption = X = M^e mod N Decryption = M = X^d mod N The e-value you see in the call is the value e above. Th

Re: [Crypt::SSLeay] problems running on FreeBSD4.2

2001-02-15 Thread Joshua Chamas
TinK wrote: > > Hi > > I'm having problems getting Crypt::SSLeay to work on my virtual server > under FreeBSD4.2... > > When I run a simple test I get the following message: > > /usr/libexec/ld-elf.so.1: > /usr/local/lib/site_perl/auto/Crypt/SSLeay/SSLeay.so: Undefined symbol > "OpenSSL_add_al

REMOVE

2001-02-15 Thread Duc Chau
REMOVE ___ Duc Chau, Network Operations Engineer L90: Internet Advertising Solutions v  310 | 751-0200 x320 f  310 | 578-2091 Stand Out! http://www.L90.com Los Angeles . San Francisco . Chicago . Detroit . New York . Miami

Re: RSA Encrypt/Decrypt fails

2001-02-15 Thread Jean-Marc Desperrier
Jan Zoellner wrote: > At 15.02.01 13:04, you wrote: > >point of using RSA if not ?, so I will insist once again on the fact that you > >SHOULDN'T do that. > > I reimplemented the whole thing to be padded with random data (which are > discarded upon decryption). PKCS#1 padding is worse than that,

[Crypt::SSLeay] problems running on FreeBSD4.2

2001-02-15 Thread TinK
Hi I'm having problems getting Crypt::SSLeay to work on my virtual server under FreeBSD4.2... When I run a simple test I get the following message: /usr/libexec/ld-elf.so.1: /usr/local/lib/site_perl/auto/Crypt/SSLeay/SSLeay.so: Undefined symbol "OpenSSL_add_all_algorithms" I installed it us

Re: Why is mod_ssl OK with NN 4.5?!

2001-02-15 Thread Lutz Jaenicke
On Thu, Feb 15, 2001 at 05:04:41PM +, Andrew Cooke wrote: > After spending the day trying to find differences in the code I am starting > to wonder whether mod_ssl has a patch applied that is not in OpenSSL. Is > that possible? (the mod_ssl I am using comes precompiled from > openSA). Ca

Strange NN 4.5 glitch (compared with mod_ssl)

2001-02-15 Thread Andrew Cooke
Hi, This is a rather odd questions. Apologies if anyone has seen this on the mod_ssl list (the same problem occurs with 0.9.5a; I haven't tried later versions yet). Anyway, if anyone can explain the following I'd be more than grateful: I have some server code that uses openSSL. During testi

Using OpenSSL in combination with nCipher

2001-02-15 Thread Erik Ulrichts - HyperTrust nv
Hi All, I just installed openssl-engine-0.9.6 on win NT. I'm trying to find out how to use this in combination with a nCipher-device (nForce). But I don 't know how. Does somebody have a few small samples how to this? Ulrichts Erik HyperTrust __

Need help about compile openssl 0.9.6 on NT 4.0

2001-02-15 Thread Armando Garcia Garcia
Hi:   I am trying to compile OPENSSL 0.9.6 version in MS Windows NT 4.0 with MS VC++ 5.0 installed, I ran the following commands like you explain in INSTALL.W32 file :   > perl Configure VC-WIN32> ms\do_ms> nmake -f ms\ntdll.mak   In this commands I get the following output :   Building Open

REMOVE

2001-02-15 Thread Hampus Söderström
REMOVE __ OpenSSL Project http://www.openssl.org User Support Mailing List[EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]