On 16 April 2014 05:48, chetan wrote:
> If this is only ECDH than how to perform ECDHE?
> what changes i have to made in this code?
Well the final E in ECHDE stands for ephemeral. It is not really a
difference in the way the algorithm itself works, but more about how
it is used. With ECDH both pa
If this is only ECDH than how to perform ECDHE?
what changes i have to made in this code?
--
View this message in context:
http://openssl.6102.n7.nabble.com/Help-me-for-ECDHE-algorithm-tp49168p49499.html
Sent from the OpenSSL - User mailing list archive at Nabble.com.
__
> From: owner-openssl-us...@openssl.org On Behalf Of chetan
> Sent: Monday, April 14, 2014 00:42
> xxx.c is my program file.
> So, i'm compile simply like "cc xxx.c ".
> I am Gettting [undefined reference]
This is basic C programming. Whenever you link (not just compile) a C
program
that uses a
On 15 April 2014 05:40, chetan wrote:
> Thanks to you...it's working.
> Now i have one last query for you.
> I'm generating public and private key files using command line openssl. I
> generated 2 .PEM files each for public and private key.
> Now i want to generate shared secret from that files us
Thanks to you...it's working.
Now i have one last query for you.
I'm generating public and private key files using command line openssl. I
generated 2 .PEM files each for public and private key.
Now i want to generate shared secret from that files using APIs like
EVP_PKEY_derive and others. So,Can
On 14 April 2014 05:42, chetan wrote:
> xxx.c is my program file.
> So, i'm compile simply like "cc xxx.c ".
> I am Gettting errors as below:
> xxx.c:(.text+0x19): undefined reference to `EVP_PKEY_CTX_new'
> xxx.c:(.text+0x30): undefined reference to `EVP_PKEY_derive_init'
> xxx.c:(.text+0x48): un
xxx.c is my program file.
So, i'm compile simply like "cc xxx.c ".
I am Gettting errors as below:
xxx.c:(.text+0x19): undefined reference to `EVP_PKEY_CTX_new'
xxx.c:(.text+0x30): undefined reference to `EVP_PKEY_derive_init'
xxx.c:(.text+0x48): undefined reference to `EVP_PKEY_derive_set_peer'
xxx
On 11 April 2014 06:25, chetan wrote:
> I tried your sample code but compiler showing error like "Undefined refrence
> to EVP_PKEY_CTX_new" although i included header file "openssl/evp.h".
> You have any idea why this errors occuring???
> And by the way thanks for the help friend.
Please
1) Post
I tried your sample code but compiler showing error like "Undefined refrence
to EVP_PKEY_CTX_new" although i included header file "openssl/evp.h".
You have any idea why this errors occuring???
And by the way thanks for the help friend.
--
View this message in context:
http://openssl.6102.n7.nab
On 10 April 2014 07:29, chetan wrote:
> Thanks for giving time to me. I was given a task that i have to implement
> ECDHE algorithm means i can use openssl.
> So, can you please tell me what i have to do after generatic public and
> private key files. How to generate shared secret and what next a
Thanks for giving time to me. I was given a task that i have to implement
ECDHE algorithm means i can use openssl.
So, can you please tell me what i have to do after generatic public and
private key files. How to generate shared secret and what next after that.
Thanks again
--
View this messag
On 9 April 2014 08:39, chetan wrote:
> I am newer to this and i want to make ECDHE algorithm for cilient-server.
> Can anyone tell me basic steps and functions to do this. all response are
> acceptable.
> Thankss in advance
>
Its unclear from your question whether you are l
Ø I guess I need to know what to research to make all of these guys sort of
use the same cert. is this what chaining could do for me?
Not sure why you need or want a single cert, but if you do then one cert with
multiple subjectAltName extensions should do it.
/r$
--
Principa
ay 12, 2012 2:54 PM
To: openssl-users@openssl.org
Subject: Re: Help me find the SSL wrapper/another solution
demos/state_machine
demos/tunala
On Tue, May 8, 2012 at 2:17 PM, Marcin Głogowski wrote:
> Hello,
> I have to write non blocking SSL/TLS server based on the OpenSSL library.
> I cou
demos/state_machine
demos/tunala
On Tue, May 8, 2012 at 2:17 PM, Marcin Głogowski wrote:
> Hello,
> I have to write non blocking SSL/TLS server based on the OpenSSL library.
> I couldn't find any example/tutorial with this.
> Please write me where can I find some client/server examples or simple
> From: owner-openssl-us...@openssl.org On Behalf Of Marcin Glogowski
> Sent: Tuesday, 08 May, 2012 09:18
> Hello,
> I have to write non blocking SSL/TLS server based on the
> OpenSSL library.
> I couldn't find any example/tutorial with this.
> Please write me where can I find some client/server
> From: owner-openssl-us...@openssl.org On Behalf Of Muhammed Shafeek
> Sent: Monday, 02 May, 2011 04:48
> Hi Peter,
> Add padding for CBC mode encryption.
> Or u can use CFB mode. EVB_bf_cfb()
Unnecessary. EVP_bf_cbc (or EVP_*_cbc) already does PKCS5 padding.
(If yo
Hi Peter,
The extra string in o/p is due to error in coding. u r passing incorrect length
in EVP_DecryptUpdate.
if (!(EVP_DecryptUpdate(&dctx, dec_outbuf, &decoutlen, enc_outbuf,
output_buf_size)))
change above line to
if (!(EVP_DecryptUpdate(&dctx, dec_outbuf, &decoutlen, enc_outbuf,
enco
Hi Peter,
The extra string in o/p is due to error in coding. u r passing incorrect
length in EVP_DecryptUpdate.
if (!(EVP_DecryptUpdate(&dctx, dec_outbuf, &decoutlen, enc_outbuf,
output_buf_size)))
change above line to
if (!(EVP_DecryptUpdate(&dctx, dec_outbuf, &decoutlen, enc_outbuf,
encoutlen
Hi Peter,
Add padding for CBC mode encryption.
Or u can use CFB mode. EVB_bf_cfb()
-Shafeek
Hi,
Thank you for the reply. I have edit the code.
Source Code:
//gcc blowfish2.c -L/usr/local/ssl/lib/ -lssl -lcrypto -Wall
#include
#include
#include
#include
#include
#define input_
Hi Peter,
Add padding for CBC mode encryption.
Or u can use CFB mode. EVB_bf_cfb()
-Shafeek
On Sat, Apr 30, 2011 at 7:26 PM, derleader mail wrote:
> Hi,
>I have a problem with the code below. There is a bug that I can't find
> and fix.
> This is the output when I try to run it:
>
> [root@l
Hi I used the real key and IV now ,
But there is some problem in decrypting firat 16 bytescan you tell why
is this happening...
the first 16 bytes are read properly but not gettin g decrypted??What could
be reason for this?
because of this my code is returning an error in decrypt final..
Than
Hi NaGaGo,
the keylen and ivlen are off by one:
int keyLength = sizeof(uKey) -1; /* == strlen(uKey) */
int ivLength = sizeof(iv) -1;
(and really use it later instead of "8*sizeof(uKey)")
HTH
Christian
On Tue, Nov 17, 2009 at 09:06:07PM -0800, NaGaGo wrote:
>
> Hi christian
Hi christian,
Thank you very much for your help...I was thinking the same but I already
tried with real key...
and even I changed the code for getting the file size also but yet my
program didn't give me correct out put...
The problem actually is the files which i'm getting when I decrypt the bin
Hi,
you used the ASCII representation of the key, instead of the real key.
Same with iv.
On Tue, Nov 17, 2009 at 02:43:48AM -0800, NaGaGo wrote:
>
> Hai
> this is the openssl shell command i'm using to decrypt a binary file...
> openssl enc -d -K
> 3834373532303435333730323834383132373330393233
Thanks !
Currently, I've know abit about RSA API from man pages and having another
project, so I'll find that book later !
Thanks again !
Helios Nguyen <[EMAIL PROTECTED]> wrote: Hi Trung,
all about cryptography of openssl are in openssl/crypto/... directory (rsa:
openssl/crypto/rsa)
I think i
Hi Trung,
all about cryptography of openssl are in openssl/crypto/... directory (rsa:
openssl/crypto/rsa)
I think if you want to use openssl library you should find documents or
books to read. This library is not simple. One book i would be recommended
with you is "Network security with openssl".
You can try to look for books about SSL/PKI, etc.
Best Regards
--
WWW.XGFORCE.COM -
The Next Generation Server Clustering
and Clustered Enterprise Firewall/VPN Solutions.
--
- Original Message
> -Original Message-
> From: Ali Seifi [mailto:[EMAIL PROTECTED]]
> Sent: Sunday, April 15, 2001 11:11 AM
> To: [EMAIL PROTECTED]
> Subject: help Me
>
>
> Dear Sir/Madam,
> Hello
> I find your OpenSSL Source and enjoy from it. it's
> great.
> I has a Question :
> I need to write a WIN200
You can useWINZIP 5.x to decompress the files.TAR.GZ.
To install, you should read the file INSTALL.W32.
Good luck.
Juan
***
>Subject: Help me!
> Date: Thu, 27 Apr 2000 20:29:25 -
>From: "tinhocvdc3" <[EMAIL PROTECTED]>
> Reply-To:
: Help
me!You can use Winzip to
extract zipped file. There is a Readme file on the directory, follow
instructions there, you can compile OpenSSL in WinNT. The output file will be
OpenSSL in out32dll directory. Consider ActivePerl as a compiler to run a Batch file (you know that
OpenSSL
You can use Winzip to extract zipped file. There is a Readme file on the directory, follow instructions there, you can compile OpenSSL in WinNT. The output file will be OpenSSL in out32dll directory.
Consider ActivePerl as a compiler to run a Batch file (you know that OpenSSL is mainly inteded f
32 matches
Mail list logo