Regarding IPv6/Dual Stack Support

2014-11-03 Thread Shravan Mahendra
Hi,

I would like know from which version onwards OpenSSL library supports IPv6/Dual 
Stack implementation.
I have searched on net but could not able to find relevant answer.


Regards,
Shravan Mahendra


DISCLAIMER
==
This e-mail may contain privileged and confidential information which is the 
property of Persistent Systems Ltd. It is intended only for the use of the 
individual or entity to which it is addressed. If you are not the intended 
recipient, you are not authorized to read, retain, copy, print, distribute or 
use this message. If you have received this communication in error, please 
notify the sender and delete all copies of this message. Persistent Systems 
Ltd. does not accept any liability for virus infected mails.



Re: sign data and verify it

2014-11-03 Thread Amir Reda
dear sir i already installed ssl lib
i use this command
amir@amir-Master:~$ sudo apt-get install libssl-dev
[sudo] password for amir:
Reading package lists... Done
Building dependency tree
Reading state information... Done
libssl-dev is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
amir@amir-Master:~$
as you can see it is already installed

are there any solution

On Fri, Oct 31, 2014 at 4:14 PM, Jeffrey Walton noloa...@gmail.com wrote:

 On Fri, Oct 31, 2014 at 6:57 AM, Amir Reda amirale...@gmail.com wrote:
  dear all i made a code for sign some data and verify it i am using
 eclipse
  as IDE and ubuntu 13.10 i have linked eclipse with ssl lib and crypto++
  which i use in this code i got an error
 
  Invoking: Cross G++ Linker
  g++ -L/usr/include/openssl -L/usr/include/cryptopp
 -L/usr/include/crypto++
  -L/usr/include -o sign  ./src/sign.o   -lssl -lcryptopp -lcrypto++
  /usr/bin/ld: ./src/sign.o: undefined reference to symbol
  'RSA_sign@@OPENSSL_1.0.0'
  /lib/i386-linux-gnu/libcrypto.so.1.0.0: error adding symbols: DSO missing
  from command line
  collect2: ld returned 1 exit status
 Be sure you have the dev package installed for Ubuntu. I think that's
 'sudo apt-get install libssl-dev'.(See
 https://packages.debian.org/search?keywords=libssl-dev).

 Add '-lss -lcrypto'. They are the OpenSSL libraries. Add them in the
 order shown.

 '-lcryptopp -lcrypto++' are Wei Dai's Crypto++ libraries. Are you sure
 you need them?
 __
 OpenSSL Project http://www.openssl.org
 User Support Mailing Listopenssl-users@openssl.org
 Automated List Manager   majord...@openssl.org




-- 
Warmest regards and best wishes for a good health,*urs sincerely *
*mero*


hearbeat_test in openssl-1.0.1j

2014-11-03 Thread Philip Bellino
Hello,
Using  an FC core Linux 2.6.x i686 system.

In openssl-1.0.1h, we were able to build/execute the heartbeat_test as is.

In Openssl-1.0.1j, we are now required to add a Configure option 
enable-unit-test to use the heartbeat_test.

Also, the  heartbeat_test executable in 1.0.1h was 14K in size and in 
1.0.1j(with enable-unit-test), the executable is now 1.6M in size.

May I ask why this was done this way for 1.0.1j?  I didn't see anything in the 
CHANGES file for it.

Thanks,
Phil



Phil Bellino
Principal Software Engineer | MRV Communications Inc.
300 Apollo Drive |  Chelmsford, MA 01824
Phone: 978-674-6870  |   Fax: 978-674-6799
www.mrv.com


[MRV-email]


[E-Banner]http://www.mrv.com/landing/mrvs-software-defined-networking-sdn-and-network-function-virtualization-nfv-products-and-architecture


The contents of this message, together with any attachments, are intended only 
for the use of the person(s) to whom they are addressed and may contain 
confidential and/or privileged information. If you are not the intended 
recipient, immediately advise the sender, delete this message and any 
attachments and note that any distribution, or copying of this message, or any 
attachment, is prohibited.


RE: feeds

2014-11-03 Thread Salz, Rich
 Please consider adding a release and - if you have time for that - a separate
 security alert feed.
 Thank you!!

You mean like atom/rss?


--  
Principal Security Engineer, Akamai Technologies
IM: rs...@jabber.me Twitter: RichSalz



RE: sign data and verify it

2014-11-03 Thread Jeremy Farrell
Please read all of Jeff's message. As well as checking that OpenSSL is 
installed, he told you that you need to link against OpenSSL's libcrypto as 
well as against OpenSSL's libssl. In the linker command you show below, change 
'-lssl' to '-lssl -lcrypto'.

 

Regards,

 jjf

 

From: Amir Reda [mailto:amirale...@gmail.com] 
Sent: Monday, November 03, 2014 2:43 PM



dear sir i already installed ssl lib 

i use this command
amir@amir-Master:~$ sudo apt-get install libssl-dev
[sudo] password for amir: 
Reading package lists... Done
Building dependency tree   
Reading state information... Done
libssl-dev is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
amir@amir-Master:~$ 

as you can see it is already installed

are there any solution

 

On Fri, Oct 31, 2014 at 4:14 PM, Jeffrey Walton HYPERLINK 
mailto:noloa...@gmail.com; \nnoloa...@gmail.com wrote:

On Fri, Oct 31, 2014 at 6:57 AM, Amir Reda HYPERLINK 
mailto:amirale...@gmail.comamirale...@gmail.com wrote:
 dear all i made a code for sign some data and verify it i am using eclipse
 as IDE and ubuntu 13.10 i have linked eclipse with ssl lib and crypto++
 which i use in this code i got an error

 Invoking: Cross G++ Linker
 g++ -L/usr/include/openssl -L/usr/include/cryptopp -L/usr/include/crypto++
 -L/usr/include -o sign  ./src/sign.o   -lssl -lcryptopp -lcrypto++
 /usr/bin/ld: ./src/sign.o: undefined reference to symbol
 'RSA_sign@@OPENSSL_1.0.0'
 /lib/i386-linux-gnu/libcrypto.so.1.0.0: error adding symbols: DSO missing
 from command line
 collect2: ld returned 1 exit status
Be sure you have the dev package installed for Ubuntu. I think that's
'sudo apt-get install libssl-dev'.(See
https://packages.debian.org/search?keywords=libssl-dev).

Add '-lss -lcrypto'. They are the OpenSSL libraries. Add them in the
order shown.

'-lcryptopp -lcrypto++' are Wei Dai's Crypto++ libraries. Are you sure
you need them?

 


Re: feeds

2014-11-03 Thread Szépe Viktor

Yes, two ATOM feeds would be nice: release and security only.
Everyone could be notified az once.


Idézem/Quoting Salz, Rich rs...@akamai.com:

Please consider adding a release and - if you have time for that -  
a separate

security alert feed.
Thank you!!


You mean like atom/rss?


--
Principal Security Engineer, Akamai Technologies
IM: rs...@jabber.me Twitter: RichSalz


Szépe Viktor
--
+36-20-4242498  s...@szepe.net  skype: szepe.viktor
Budapest, XX. kerület




__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   majord...@openssl.org