Re: Palm support

2000-10-15 Thread Ben Laurie
SSL Porter wrote: Is anybody porting this library to the PalmOS? I managed to get v0.9.5c to successfully compile for the Palm but was then unable to install the resulting prc file as it was too big. Patches for 0.9.6 would be nice - what you might try doing is disabling the algorithms you

[STATUS] OpenSSL (Sun 15-Oct-2000)

2000-10-15 Thread OpenSSL Project
OpenSSL STATUS Last modified at __ $Date: 2000/09/24 17:31:36 $ DEVELOPMENT STATE o OpenSSL 0.9.7: Under development... o OpenSSL 0.9.6: Released on September 24th, 2000 o OpenSSL 0.9.5a: Released on April

RSA_private_decrypt produces garbage, sometimes

2000-10-15 Thread Noam Ben-Yochanan
Hi all, I wrote a program which generates an RSA key pair using RSA_generate_key(), then I store the private and public keys in buffers using i2d_RSAPublicKey() and i2d_RSAPrivateKey(). I later use the d2i_RSAPublicKey()/d2i_RSAPrivateKey() to reproduce the keys for encryption and decryption -

No Subject

2000-10-15 Thread john traenky
Hello, I'm a technical writer, OpenSource enthusiast looking for documentation duties for openssl. Ben Laurie told me to repost this message. Would it be cool to roll out doc _and_ great advances? For more details regarding my qualifications, drop a reply my way.

Detection error with SSLv2 DES-CBC3-MD5

2000-10-15 Thread Eric Laffoon
Hi, I'm using Konqueror in KDE 2 which uses OpenSSL. I have found that logging on to a particular site has been problematic. The base address is https://www20.secure-website.net/ What I have found is that I have to disable SSLv3 and also with version 2 RC4-64-MD5 seems to conflict. After

RE: RSA_private_decrypt produces garbage, sometimes

2000-10-15 Thread Reddie, Steven
Not all values that fit into a 128-byte buffer can be encrypted/decrypted. RSA doesn't treat the message merely as a buffer, but rather as a big number. The integer value of the message must be less than the integer value of the modulus. This is why PKCS#1 padding uses leading values of 0x00,