Re: openssl for windows file separator

2006-06-23 Thread larry.dalton
Tried that, only with single quotes. Forward slashes, back, and double back. Doesn't seem anything works for the pc, at least what I use. UNIX works, PC only works if all files are in the same directory. - Original Message - From: Kyle Hamilton To: openssl-users@openssl

Re: openssl for windows file separator

2006-06-23 Thread Kyle Hamilton
How do you mean? Windows will support the forward slash convention, as will openssl. If you use backslashes, you may need to double them. If you are using a space in any of the directory or filenames, the full path must be surrounded by doublequotes or else OpenSSL will interpret it as two diffe

Re: support for TLS extension

2006-06-23 Thread Kyle Hamilton
This message should have gone to the openssl-users list. To answer your question, it depends on what you mean by "supports". There is currently no means in place to define your own extension ID numbers and write handlers for them, to possibly modify the SSL_CTX or SSL structure that is associate

Re: SSL Compile problem

2006-06-23 Thread Marek Marcola
Hello, > Writing an SSL socket program but when I include ssl.h I get the same sort > of errors on all systems like below. This happens even on a new blank c > program. > > This is always the line in ssl.h that causes the first error > > typedef struct ssl_st SSL; > cc -gc -I../include

Norbert Bittner is out of the office.

2006-06-23 Thread Norbert Bittner
I will be out of the office starting 06/23/2006 and will not return until 07/05/2006. I will not have access to e-mail or voice-mail until the 29th.

SSL Compile problem

2006-06-23 Thread Randy
openssl-users@openssl.org, Built or installed various versions of OpenSSL onto three different systems. Writing an SSL socket program but when I include ssl.h I get the same sort of errors on all systems like below. This happens even on a new blank c program. This is always the line in ssl.h

Re: FIPS Security Policy question

2006-06-23 Thread Dr. Stephen Henson
On Fri, Jun 23, 2006, Kyle Hamilton wrote: > > I realize that this is a closed-development effort (as required)... > but can anyone involved give us some kind of heads-up as to what will > change, as soon as it's known? Please? > I'm on vacation until tomorrow and I'm sending this from a laptop

openssl for windows file separator

2006-06-23 Thread larry.dalton
What arguments do you use when using openssl for windows to make full path to the file in the openssl arguments work?   [EMAIL PROTECTED]    

Re: obj_mac.num

2006-06-23 Thread Richard Levitte - VMS Whacker
In message <[EMAIL PROTECTED]> on Fri, 23 Jun 2006 17:03:53 +0530, "Bhat, Jayalakshmi Manjunath" <[EMAIL PROTECTED]> said: jayalakshmi.bhat> I went through objects.README. But I did not understand the jayalakshmi.bhat> obj_mac.num and objects.txt files use clearly. Where do I get more inf

Re: confusion about digital signatures

2006-06-23 Thread Richard Salz
> bob got one private key and a public key, both keys can encrypt any > data but only the private key (that is kept secret ) can decrypt the > data , right ? No. What can be encrypted with one key can only be decrypted with the other. This is a one-to-one concept; the public and private key come

Re: FIPS Security Policy question

2006-06-23 Thread Kyle Hamilton
This is true. However, since we now have a better idea of what the API is going to look like (is it going to change, anyone?), we can still build and test our applications against 1.0 and hopefully expect to be able to rebuild them and be able to validate regressions against 1.1. Confusion may r

Re: message digest

2006-06-23 Thread Weidong Shao
gmail is the solution. I am on several mailing lists and find no problems with gmail's storage plus threaded UI, super fast message search.WeidongOn 6/23/06, Torsha Banerjee <[EMAIL PROTECTED]> wrote: Hello,Can anyone please please tell me how to received the messages from thegroup as digest inste

Re: FIPS Security Policy question

2006-06-23 Thread Richard Salz
> Thus, if > you are selling to an entity that requires FIPS, all OpenSSL (and > other encryption) libraries must be put into FIPS mode, or FIPS is not > satisfied and thus the application is not FIPS compliant. As of Wednesday, June 21, the FIPS certification for OpenSSL has been withdrawn; see

Re: message digest

2006-06-23 Thread Darryl Miles
Torsha Banerjee wrote: Can anyone please please tell me how to received the messages from the group as digest instead of individual mails. My mailbox is getting bombarded with these mails. Go back to where you signed up ? Maybe that was at http://www.openssl.org/support/ I'm not sure if Majo

RE: confusion about digital signatures

2006-06-23 Thread TAYLOR, TIM \(CONTRACTOR\)
One more point to note, specifically in regard to the privacy method of encrypting messages. We often give the shorthand explanation when we say that we encrypt the message with the recipient's public key. Certainly you can do this. However, given that the computational load of asymmetric key enc

Performance on Windows

2006-06-23 Thread Sean E. Covel
Does OpenSSL include optimizations for SSE, SSE2, or MMX? Would compiling using the Intel IPP libraries increase performance? Thanks, Sean __ OpenSSL Project http://www.openssl.org User Support

Re: obj_mac.num

2006-06-23 Thread Dr. Stephen Henson
On Fri, Jun 23, 2006, Bhat, Jayalakshmi Manjunath wrote: > Hi All, > >I have to port ssl library on ARM. So I was trying to understand the > code. I did not understand the use of files > In object directory. So I raised the question. > Not sure why the behaviour of objects.txt and friends s

message digest

2006-06-23 Thread Torsha Banerjee
Hello, Can anyone please please tell me how to received the messages from the group as digest instead of individual mails. My mailbox is getting bombarded with these mails. Thanks, Torsha Darryl Miles wrote: SSL_peek() there isn't much documentation about this one. My situation is this:

Re: SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER

2006-06-23 Thread Darryl Miles
Mark wrote: SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER is likely for those OSes (*glares at Windows in particular*) which require locking allocated memory in place, performing an operation on it, and then unlocking it (to allow the OS to manage the placement of the memory block in physical memory). Th

RE: confusion about digital signatures

2006-06-23 Thread Ambarish Mitra
Not a openssl question as such, but ppl will help. The basic confusion is about "encryption" and "digital signature". These are 2 different aspects: encryption helps to obscure data so that it can not be understood by an evasdropper (privacy), whereas digital signature helps in non-repurdiation an

RE: SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER

2006-06-23 Thread Mark
> SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER is likely for those OSes (*glares > at Windows in particular*) which require locking allocated memory in > place, performing an operation on it, and then unlocking it (to allow > the OS to manage the placement of the memory block in physical > memory). There a

Re: confusion about digital signatures

2006-06-23 Thread Saurabh Arora
hi On 6/23/06, hicham <[EMAIL PROTECTED]> wrote: hello I'm having some confusion about digital signatures, in this web site "http://www.youdzone.com/signature.html"; gives a nice examle of what 's a digital signature? Here what I understood : bob got one private key and a public key, both ke

RE: obj_mac.num

2006-06-23 Thread Bhat, Jayalakshmi Manjunath
Hi All, I have to port ssl library on ARM. So I was trying to understand the code. I did not understand the use of files In object directory. So I raised the question. Regards, Jaya -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Saurabh Arora Sent:

Re: obj_mac.num

2006-06-23 Thread Saurabh Arora
hi first - follow the same thread of queries.. use reply instead of creating a separate thread. second - wot exactly you want to do ? so we can reply in that context. in case you are just understanding openssl, then i wud suggest you to first learn about OID (Object Identifiers) before mining th

obj_mac.num

2006-06-23 Thread Bhat, Jayalakshmi Manjunath
Hi All, I went through objects.README. But I did not understand the obj_mac.num and objects.txt files use clearly. Where do I get more info on this. Sorry in my prev mail I mentioned obj_mac.h instead of obj_mac.num. Thanks in advance, Jaya. _

confusion about digital signatures

2006-06-23 Thread hicham
hello I'm having some confusion about digital signatures, in this web site "http://www.youdzone.com/signature.html"; gives a nice examle of what 's a digital signature? Here what I understood : bob got one private key and a public key, both keys can encrypt any data but only the private key (that

Re: Object_mac.h,objects.txt

2006-06-23 Thread Saurabh Arora
hi i hope u read objects.txt.README still.. objects.txt is a way to tell openssl to use new OIDs,their respective names in openssl environment. so u add a OID, along with its short/long name in objects.txt then u make update openssl it updates environment, including obj_mac.h you dont need to

Objects_mac.h,objects.txt

2006-06-23 Thread Bhat, Jayalakshmi Manjunath
Hi All, Please can any one tell me what is the use of objects_mac.h and objects.txt Regards, Jaya __ OpenSSL Project http://www.openssl.org User Support Mailing Listopen

Object_mac.h,objects.txt

2006-06-23 Thread Bhat, Jayalakshmi Manjunath
Hi all, I am working on SSL from some time back. I don't understand the use of Object_mac.h,objects.txt, can any one explain me the use of this 2 files. Thanks in advance, Jaya. __ OpenSSL Project

Re: Reading/Writing to disk files on Windows...

2006-06-23 Thread William A. Rowe, Jr.
Kendall, Jerry wrote: Now, I have a Unix Project that runs wonderfully on Linux/Aix/Solaris….. There are two lines of code that cause a windows exception. PEM_write_PrivateKey(fp, NewKeyReq, Cipher, GetCode(0),strlen(GetCode(0)), NULL, NULL); PEM_write_X509(fp, x509_Cert); Did you call

Re: Accessing Manual Pages in openssl

2006-06-23 Thread Dave Pawson
On 22/06/06, Marek Marcola <[EMAIL PROTECTED]> wrote: Hello > And for the great unwashed using Windows Marek :-) > Is it just the online versions? On Unix pod2man.pl script is used. I think that pod2chm from CPAN perl module may help :-) C:\Perl>ppm install pod2chm Error: Package 'pod2chm' not

Re: Accessing Manual Pages in openssl

2006-06-23 Thread Dave Pawson
On 23/06/06, Bernhard Froehlich <[EMAIL PROTECTED]> wrote: Marek Marcola wrote: > Hello > >> And for the great unwashed using Windows Marek :-) >> Is it just the online versions? >> > > On Unix pod2man.pl script is used. > I think that pod2chm from CPAN perl module may help :-) Perl scares me mo