Re: About RC4 decryption.

2014-07-10 Thread Andry
Hi! Have you already solved this problem? I have the same problem -- View this message in context: http://openssl.6102.n7.nabble.com/About-RC4-decryption-tp18745p51980.html Sent from the OpenSSL - User mailing list archive at Nabble.com

Re: About RC4 decryption.

2011-11-02 Thread nilesh
Hi, On Thursday 03 November 2011 04:12 AM, Dave Thompson wrote: [..] For SSL/TLS protocol, set by client as encryption key, set by server as decryption key key_block[49..64] - server Write key set by server as encryption key, set by client as decryption key 32..47 and 48..63 (off by 1) IF fo

RE: About RC4 decryption.

2011-11-02 Thread Dave Thompson
> From: owner-openssl-us...@openssl.org On Behalf Of re.est > Sent: Tuesday, 01 November, 2011 10:22 > > I am a newbie in the cryptography area and learning by writing some > > test code. > > I have setup the apache server and capturing packets using > wireshark. > > I have a query specific to R

Re: About RC4 decryption.

2011-11-01 Thread nilesh
On Tuesday 01 November 2011 07:00 PM, Ananthasayanan Kandiah wrote: [...] As you can probably see in the example above, RC4_set_key sets up the RC4_KEY structure, key, using 8 bytes of data declared in key_data. Thanks. But what I am not able to understand is once the key material is prepared,

RE: About RC4 decryption.

2011-11-01 Thread Tayade, Nilesh
> -Original Message- > From: owner-openssl-us...@openssl.org [mailto:owner-openssl- > us...@openssl.org] On Behalf Of re.est > Sent: Tuesday, November 01, 2011 7:52 PM > To: openssl-users@openssl.org > Subject: Re: About RC4 decryption. > > On 11/01/201

Re: About RC4 decryption.

2011-11-01 Thread re.est
On 11/01/2011 06:48 PM, nilesh wrote: Hi, I am a newbie in the cryptography area and learning by writing some test code. I have setup the apache server and capturing packets using wireshark. I have a query specific to RC4. With the given server private key, I am able to generate master secret

Re: About RC4 decryption.

2011-11-01 Thread Ananthasayanan Kandiah
Hi Nilesh, Here's the rc4 example I have come up with: #include #include #include #include int main(void) { int i; BIO*bio_out; RC4_KEY key; static unsigned char key_data[256] = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef }; char* data_to_en

Re: About RC4 decryption.

2011-11-01 Thread nilesh
On Tuesday 01 November 2011 04:18 PM, nilesh wrote: Hi, I am a newbie in the cryptography area and learning by writing some test code. I have setup the apache server and capturing packets using wireshark. I have a query specific to RC4. With the given server private key, I am able to generate ma

About RC4 decryption.

2011-11-01 Thread nilesh
Hi, I am a newbie in the cryptography area and learning by writing some test code. I have setup the apache server and capturing packets using wireshark. I have a query specific to RC4. With the given server private key, I am able to generate master secret and key block correctly. My test code