RE: Convert symmetrically encrypted content to base64

2012-08-24 Thread Dave Thompson
> From: owner-openssl-us...@openssl.org On Behalf Of Bjoern Schiessle > Sent: Friday, 24 August, 2012 12:14 > Now I'm trying the implement the function > which does exactly the opposite: Take the public and private key in > the PEM format from the server and import it in a RSA structure: > Note

RE: Entropy for OpenSSL

2012-08-24 Thread Charles Mills
Thanks. RAND_status() is returning a 1 so I guess I am good for now. I put in an error message if it fails to return a 1. I will keep an eye on this problem going forward. The product is designed to run as a Windows Service but I am currently testing in console mode. I will specifically watch wha

Re: Convert symmetrically encrypted content to base64

2012-08-24 Thread Bjoern Schiessle
Hi Christian, On Fri, 24 Aug 2012 08:11:25 +0200 Christian Hohnstaedt wrote: > please see my comments below: > (rather Qt and memory related) Thank you for your feedback. Now I'm trying the implement the function which does exactly the opposite: Take the public and private key in the PEM format f

Re: DH exchange & socket BIOs

2012-08-24 Thread la...@angry-red-pla.net
Uh maybe this is the point: how do you init the size of a dh struct correctly? I just set it like size=64 - Reply message - From: "Michel" To: Subject: DH exchange & socket BIOs Date: Fri, Aug 24, 2012 5:47 pm Hi Carolin, "It is just about half the length of the ..." [very] Quick

Re: DH exchange & socket BIOs

2012-08-24 Thread la...@angry-red-pla.net
Yeah size is the same on both sides :( - Reply message - From: "Michel" To: Subject: DH exchange & socket BIOs Date: Fri, Aug 24, 2012 5:47 pm Hi Carolin, "It is just about half the length of the ..." [very] Quick response : Hex value is twice the lengh of binary data : Have you chec

Re: DH exchange & socket BIOs

2012-08-24 Thread Michel
Hi Carolin, "It is just about half the length of the ..." [very] Quick response : Hex value is twice the lengh of binary data : Have you checked the value of 'size' arg ? Not sure this helps ... Le 24/08/2012 16:38, Carolin Latze a écrit : (sorry if this mail arrives twice. I send it first wit

DH exchange & socket BIOs

2012-08-24 Thread Carolin Latze
Hi all I try to implement a DH exchange using socket BIOs. Here is what I do: On the server - I initialize a DH structure with DH_new - I generate the parameters using DH_generate_parameters(prime_len,g,NULL,NULL) with prime_len=512 - I generate the keys using DH_generate_key(dh) Now I need t

DH exchange & socket BIOs

2012-08-24 Thread Carolin Latze
(sorry if this mail arrives twice. I send it first without being subscribed to this list by accident) Hi all I try to implement a DH exchange using socket BIOs. Here is what I do: On the server - I initialize a DH structure with DH_new - I generate the parameters using DH_generate_parameters(

RE: Entropy for OpenSSL

2012-08-24 Thread Thomsen, Brant
OpenSSL will try to use random sources available for the OS, so supplying your own additional randomization is usually not required. You can call RAND_status() to determine if the library was successful getting enough random data that it decides it can start providing random numbers. It will r

Re: OpenSSL on beagleboard

2012-08-24 Thread Ben Laurie
On Fri, Aug 24, 2012 at 2:18 AM, Jeffrey Walton wrote: > On Thu, Aug 23, 2012 at 9:06 PM, Paulo Roberto > wrote: >> Hello, I am using the package libssl-dev on ubuntu in my beagleboard xm, and >> I have to run two C algorithms using the openSSL library.. >> Although I can't compile using the com

Openssh error - Solaris 10 SPARC Platform

2012-08-24 Thread Roberto Ballan
Hi, I have a Sun Solaris 10 Server that I have upgraded the Openssh version 5.3p1 to version 6.0p1. I have upgraded openssl from version 0.9.81 to version 1.0.1c. When I check the ssh log file I see the error. Please can you provide some help how to resolve this issue ? ==

RE: FIPS error on Apache httpd v2.4.3, OpenSSL 1.0.1c and fips-2.0.1

2012-08-24 Thread Ruiyuan Jiang
Thanks, Cassie Ldd shows Apache httpd uses Redhat (v6.x)'s built in /lib64/libcrypto.so/a not my OpenSSL's /usr/local/ssl/lib/libcrypto.so. I got to fix that problem first. Thanks. Ryan Jiang -Original Message- From: owner-openssl-us...@openssl.org [mailto:owner-openssl-us...@openssl.o

RE: Entropy for OpenSSL

2012-08-24 Thread Charles Mills
Ping! Anybody? Charles -Original Message- Sent: Wednesday, August 22, 2012 10:07 AM To: openssl-users@openssl.org Subject: Entropy for OpenSSL I'm looking at https://groups.google.com/forum/?fromgroups#!topic/mailing.openssl.users/j8O bkLf6xgs Do I interpret it correctly as saying tha