RE: AES pointers needed..

2009-09-19 Thread David Schwartz
Dennis Morgan: Hi, what i am trying to achieve is to encrypt a plain ascii text message Which will be transmitted via a udp or tcp. The application which its been implemented for is for a security product.. regards Dennis Do you have a shared secret that only the client and server

Re: AES pointers needed..

2009-09-18 Thread Jeffrey Walton
Hi Dennis, I am presently looking at implementing AES 256bit into an application which I am working on... Is it possible to do it with OpenSSL? It depends on what you want to accomplish, and the mode of operation in which AES-256 will be operating. Can you offer more details? Jeff On

Re: AES pointers needed..

2009-09-18 Thread Kyle Hamilton
You could use libeay alone (not linking in libssl), and that would include an implementation of AES256. -Kyle H On Fri, Sep 18, 2009 at 5:58 PM, Dennis Morgan dennis.mor...@xtra.co.nz wrote: Hello everyone.. I am presently looking at implementing AES 256bit into an application which I am

Re: AES pointers needed..

2009-09-18 Thread Dennis Morgan
Walton noloa...@gmail.com Subject: Re: AES pointers needed.. To: openssl-users@openssl.org Received: Saturday, 19 September, 2009, 1:19 PM Hi Dennis, I am presently looking at implementing AES 256bit into an application which I am working on. Is it possible to do it with OpenSSL