about the big number xor

2009-09-13 Thread jaze lee
I want to implement xor function of large number . I do not know whether the similar function is already been implemented. If so, where i can find it . And if not i have to try , thank you ! __ OpenSSL Project

[no subject]

2009-09-13 Thread jaze lee
list __ OpenSSL Project http://www.openssl.org User Support Mailing Listopenssl-users@openssl.org Automated List Manager majord...@openssl.org

Re: load certificate into rsa

2009-09-13 Thread Michael Prinzinger
thank you stephen, but my already exisitng infrastructure is build on the lower level of OpenSSL so it was easier/better? to implement RSA_sign and RSA_verify. Still you pointed me at the right track with your answer. FYI i have solved my problem like this: void

known.hosts equivalent

2009-09-13 Thread Joe
Hi! I've been using OpenSSL for a long time (I bet most of us have), but I nearly always find myself connecting to services using self-signed certificates, and on top of that I'm not very fond of the whole PKI-system. Is it possible to have OpenSSL verify and check the fingerprint of the

Re: Server crash while starting service

2009-09-13 Thread vikkulka
hi all, http://www.nabble.com/file/p25398304/OpenSSL_FIPS_1.2__03.8j.xls OpenSSL_FIPS_1.2__03.8j.xls I am facing a issue while running a process on win x64 AMD platform using fips 1.2 and 0.9.8j the process is continuously crashing down. on further investigation i found out that the

Re: TLS CA Certificate Loading in DER format

2009-09-13 Thread David Shambroom
d2i_X509_fp() Chaitra Shankar wrote: Hi, I am to use TLS for securing an application's data transfer. For development purposes I have been using a dummy set of certificates in PEM format. The currently used SSL_CTX_load_verify_locations API requires that the certificate be in

Re: about the big number xor

2009-09-13 Thread Mounir IDRASSI
Hi, There is no explicit function for this but you can use the function BN_GF2m_add to perform the XOR of two BIGNUMs : for GF2m polynomials, the addition is a simple bitwise XOR. Cheers, -- Mounir IDRASSI IDRIX http://www.idrix.fr jaze lee wrote: I want to implement xor function of large

Re: How to re-use a socket with a new SSL session?

2009-09-13 Thread Darryl Miles
Andrew Sumner wrote: The client can then send messages to the server worker process using SSL_write, and the worker receives them ok. However, when the worker sends something to the client, nothing comes through - SSL_read fails. In summary, is there any way of closing an SSL session on a

Re: about the big number xor

2009-09-13 Thread jaze lee
2009/9/14 jaze lee jaze...@gmail.com: 2009/9/14 Mounir IDRASSI mounir.idra...@idrix.net: Hi, There is no explicit function for this but you can use the function BN_GF2m_add to perform the XOR of two BIGNUMs : for GF2m polynomials, the addition is a simple bitwise XOR. Thank you very much, i

Re: about the big number xor

2009-09-13 Thread jaze lee
2009/9/14 Mounir IDRASSI mounir.idra...@idrix.net: Hi, There is no explicit function for this but you can use the function BN_GF2m_add to perform the XOR of two BIGNUMs : for GF2m polynomials, the addition is a simple bitwise XOR. Thank you very much, i use cscope and find the BN_GF2m_add ,

RE: How to re-use a socket with a new SSL session?

2009-09-13 Thread Andrew Sumner
Hi Viktor, Initially, does your client build an SSL connection over an already (TCP) established connection passed to it as a file descriptor? yes. Initially, does your server accept an SSL connection over an already (TCP) established connection passed to it as a file descriptor? yes. Do