Re: https server using openssl

2012-10-30 Thread Andrey Koltsov
Hi. I think that you should write simple HTTP server first and add SSL support to it afterwards. Best regards, Andrey Koltsov software developer 29.10.2012 20:49, Indtiny s пишет: Hi, I have CCM chiper suite in the openssl and for some other requirement I have write my own simple

Re: OpenSSL DES generates '\n' in encrypted code

2012-08-21 Thread Andrey Koltsov
Hi Tarun. Output of every encryption function is always binary so it can contains ANY character. You should encode this binary string to base64 or hex format by yourself to pass it to your application. Do not forget to do reverse encoding before decrypting. Best regards, Andrey Koltsov

Re: OpenSSL DES generates '\n' in encrypted code

2012-08-21 Thread Andrey Koltsov
Hi. base64 format can encode strings of any length. The encoded result would be longer of course. Best regards, Andrey Koltsov software developer CyberplatSoft Ltd 21.08.2012 11:45, Tarun Thakur пишет: Hi, Thanks for your reply.. But issue in base64 encoding is it will generate encoded

Re: OpenSSL and GOST engine issue (statically linked library )

2012-06-14 Thread Andrey Koltsov
in gost_section. Best regards, Andrey Koltsov software developer 14.06.2012 15:25, Abyss Lingvo написал: I have added OpenSSL_add_all_algorithms(); function call to initialization part but without success. The same behavior as before. What's more for dynamically linked version it works without

Re: Question about EVP_PKEY_decrypt() with 4K RSA key

2012-06-13 Thread Andrey Koltsov
Hi. Here is a result on my Cygwin + OpenSSL 1.0.1c 10 May 2012 Reading keys...keys are ready. Encrytion/decryption with RSA-based function is OK. Encrytion/decryption with EVP-based function is OK. Signature chek is OK. It seems it works fine. Best regards, Andrey Koltsov 13.06.2012 15:51

Re: OpenSSL and GOST engine issue (statically linked library )

2012-06-13 Thread Andrey Koltsov
Hi. I think you should add OpenSSL_add_all_algorithms(); in your initialization part. Best regards, Andrey Koltsov software developer 13.06.2012 17:21, Abyss Lingvo написал: Hi all ! This is my first mail to openssl mailing list. I have a problem with statically linked openSSL library

Re: SSL attack scenario

2009-05-17 Thread Andrey Koltsov
. What this article says is this: if you *received* data from TCP connection it will be without duplication or losing data. It doesn't say: if you *send* data it will be received correctly by other host. It's impossible to garantee. -- Andrey Koltsov

Re: Question about GOST engine in Openssl 1.0

2009-05-06 Thread Andrey Koltsov
Thanks, static compilation works fine. And one remark. This file engines/ccgost/readme.gost has an example configuration for GOST engine [gost_section] engine_id = gost dynamic_path = /usr/lib/ssl/engines/libgost.so default_algorithms = ALL crypt_params =

Question about GOST engine in Openssl 1.0

2009-05-04 Thread Andrey Koltsov
As I understand, GOST engine works on Windows with mingw support only. Is it planned to make it to compile with VC++ also? If no, is it because technical problems or some legal issues? Thanks, Andy Koltsov __ OpenSSL Project

Re: unexpected SSL_ERROR_ZERO_RETURN

2009-01-09 Thread Andrey Koltsov
: Specifically, what versions of the MS operating system are you running on the servers? -Kyle H On Wed, Jan 7, 2009 at 4:44 AM, Andrey Koltsov kolt...@cyberplat.com wrote: I have the same problem with my client Openssl application. The server side is MS IIS. And all other parties use Microsoft based

Re: unexpected SSL_ERROR_ZERO_RETURN

2009-01-07 Thread Andrey Koltsov
I have the same problem with my client Openssl application. The server side is MS IIS. And all other parties use Microsoft based clients and have no such problems. It seems that a client side is a source of trouble not a server side. Suggestions from anyone are welcome. Hi, I have an SSL