RE: Linking error

2013-03-22 Thread Floodeenjr, Thomas
Hello, It looks to me like you need to link with one or more Windows libraries. QMAKE_LIBS_CORE = kernel32.lib user32.lib shell32.lib uuid.lib ole32.lib advapi32.lib ws2_32.lib -Tom Thomas Floodeen, Jr. Mentor Graphics BSD 720.494.1133 -Original Message- From: owner-openssl-us

Linking error

2013-03-22 Thread Jevin Sonut
HI, can anyone understand what this error means:: libeay32.lib(cryptlib.obj) : error LNK2019: unresolved external symbol __imp__GetUserObjectInformationW@20 referenced in function _OPENSSL_isservice libeay32.lib(cryptlib.obj) : error LNK2019: unresolved external symbol __imp__GetProcessWindowStat

Re: CPU Software Engine

2013-03-22 Thread Jan Just Keijser
Hi Costas, Costas Stasimos wrote: Hello! I'm currently using the cryptodev framework-engine with openssl-1.0.1e. By run the command # openssl engine -t (cryptodev) cryptodev engine [ available ] (dynamic) Dynamic engine loading support [ unavailable ] we can see that the cryptodev

Re: Encrypt a text file in Openssl

2013-03-22 Thread Taraniteja Vishwanatha
Refer to this link: http://bbs.csdn.net/topics/380163925 Tarani On Fri, Mar 22, 2013 at 3:15 PM, Jevin Sonut wrote: > Can anyone post a sample code how to load and break a text file and > prepare the text to be encrypted using AES or DES > > thanks > > -- > > From:- > Shanil J.S >

Re: Encrypt a text file in Openssl

2013-03-22 Thread Matt Caswell
See: http://wiki.opensslfoundation.com/index.php/EVP http://wiki.opensslfoundation.com/index.php/EVP_Symmetric_Encryption_and_Decryption http://wiki.opensslfoundation.com/index.php/EVP_Authenticated_Encryption_and_Decryption Matt On 22 March 2013 19:15, Jevin Sonut wrote: > Can anyone post a sa

Encrypt a text file in Openssl

2013-03-22 Thread Jevin Sonut
Can anyone post a sample code how to load and break a text file and prepare the text to be encrypted using AES or DES thanks -- From:- Shanil J.S __ OpenSSL Project http://www.openssl.org User Su

compile OpenSSL on windows using MSVC

2013-03-22 Thread Jevin Sonut
the following two links is of great help http://www.askyb.com/windows/compiling-and-installing-openssl-for-32-bit-windows/ http://developer.covenanteyes.com/building-openssl-for-visual-studio/#foot_text_58_5 give detail explanation of how to build the library great job. Shanil j.s

QT .pro file configuration

2013-03-22 Thread Jevin Sonut
Can someone plz tell the content of the QT .pro file where we link the library of OpenSSL to QT hope someone is using QT and openssl out here ?? thanks in advance -- From:- Shanil J.S __ OpenSSL Project

RE: SSL negotiation fails on linux with 32 bit app - NOT A PROBLEM

2013-03-22 Thread John Unsworth
Sorry for wasting everyone's time. I accidently ran the old verion of our product that uses a different SSL stack and that has exactly the same problem: Cannot negotiate SSL security - error 7047 ALERT_FATAL_ILLEGAL_PARAMETER So the problem is with the server and not the client. Thank goodness f

OpenSSL and FIPS

2013-03-22 Thread no_spam_98
I want to build the OpenSSL 1.0.1e distribution with the FIPS code from OpenSSL FIPS 2.0.2 distribution WITHOUT using the FIPS canister method and in-core fingerprint method described in the User Guide for the OpenSSL FIPS Object Module v2.0 document. Maybe to say it another way, I would like t

RE: SSL negotiation fails on linux with 32 bit app

2013-03-22 Thread John Unsworth
Further information. I ran the openssl client app and got the same error: [metabld@metabuild linux]$ openssl s_client -connect junsworth-lt2.eu.cp.net:636 CONNECTED(0003) depth=0 /C=UK/ST=cheshire/L=macclesfield/O=cp/OU=ts/CN=junsworth-lt2.eu.cp.net verify error:num=20:unable to get local issu

SSL negotiation fails on linux with 32 bit app

2013-03-22 Thread John Unsworth
I have built a LDAP client using OpenSSL on Windows that successfully connects to a LDAP server. The code has been ported to linux (just changing socket functions) as a shared library for use with a 32 bit client. SSL_connect to the same LDAP server that works fine in Windows fails. OpenSSL is use

Re: EVP_EncryptUpdate output buffer length

2013-03-22 Thread Matt Caswell
On 21 March 2013 21:04, steveRX04 wrote: > I'm using DES so the cipher block size is 8 bytes. Padding is enabled. DES? Really? Are you sure you want to use that? It is no longer considered secure. > > I know that if the input buffer is 14 bytes, then by calling > EVP_EncryptUpdate the first 8 b

EVP_EncryptUpdate output buffer length

2013-03-22 Thread steveRX04
I'm very new to using OpenSSL so I'm hoping someone could please confirm whether my understanding of how the EVP_encryptUpdate() and EVP_EncryptFinal() methods work in relation to the required size of the output buffer. I'm using DES so the cipher block size is 8 bytes. Padding is enabled. I know