Re: csr for windows server

2004-10-21 Thread =?ISO-8859-1?Q?J=F6rn_Hartmann?=
openssl req -new -key server.key -out server.csr should do the job. server.key is your server's private key file. If you do not have one yet, use openssl genrsa -out server.key 1024 to generate a 1024 bit RSA key. - Jörn Ronan wrote: no its not there i dont think. basically what is happening

Re: How small in codesize and ramsize can openssl be cut down to?

2004-10-11 Thread =?ISO-8859-1?Q?J=F6rn_Hartmann?=
Maybe I'm wrong, but I think think it's hardly possible to strip openssl down to less than 32K and keep full SSL functionality. You might have more luck in writing your own SSL implementation. That will be tough enough assuming you got only a fraction of the 32K left for the encryption part.