Re: Not able to find Definition of MD5_Init, MD5_Update and MD5_Final?

2009-07-29 Thread lists
On Wed, Jul 29, 2009 at 06:51:13PM +0530, joshi chandran wrote: > FIPS_NON_FIPS_MD_Init(MD5) > { > c->A=INIT_DATA_A; > c->B=INIT_DATA_B; > c->C=INIT_DATA_C; > c->D=INIT_DATA_D; > c->Nl=0; > c->Nh=0; > c->num=0; > return 1; > } > > I cann

Re: Not able to find Definition of MD5_Init, MD5_Update and MD5_Final?

2009-07-29 Thread joshi chandran
sl.org] On Behalf > Of joshi chandran > Sent: Wednesday, July 29, 2009 3:01 PM > To: openssl-users@openssl.org > Subject: Re: Not able to find Definition of MD5_Init, MD5_Update and > MD5_Final? > > I got the definition for MD5_Update and MD5_Final . but was not able > to fig

RE: Not able to find Definition of MD5_Init, MD5_Update and MD5_Final?

2009-07-29 Thread PMHager
.org Subject: Re: Not able to find Definition of MD5_Init, MD5_Update and MD5_Final? I got the definition for MD5_Update and MD5_Final . but was not able to figure out the code for MD5_Init. Thank in advance On Wed, Jul 29, 2009 at 6:15 PM, PMHager wrote: > > In crypto\md5\md5_locl.h: >

Re: Not able to find Definition of MD5_Init, MD5_Update and MD5_Final?

2009-07-29 Thread joshi chandran
> > Peter > > -Original Message- > From: owner-openssl-us...@openssl.org > [mailto:owner-openssl-us...@openssl.org] On Behalf > Of joshi chandran > Sent: Wednesday, July 29, 2009 1:26 PM > To: openssl-users@openssl.org > Subject: Re: Not able to find Definiti

RE: Not able to find Definition of MD5_Init, MD5_Update and MD5_Final?

2009-07-29 Thread PMHager
ine is not an assignment. It is a replacement definition. Peter -Original Message- From: owner-openssl-us...@openssl.org [mailto:owner-openssl-us...@openssl.org] On Behalf Of joshi chandran Sent: Wednesday, July 29, 2009 1:26 PM To: openssl-users@openssl.org Subject: Re: Not able to find

Re: Not able to find Definition of MD5_Init, MD5_Update and MD5_Final?

2009-07-29 Thread joshi chandran
I am using openssl 9.8k ... This is the content of md5_dgst.c #include #include "md5_locl.h" #include #include #ifdef OPENSSL_FIPS #include #endif const char MD5_version[]="MD5" OPENSSL_VERSION_PTEXT; /* Implemented from RFC1321 The MD5 Message-Digest Algorithm */ #define INIT_DATA_A (u

Re: Not able to find Definition of MD5_Init, MD5_Update and MD5_Final?

2009-07-29 Thread Martin Kaiser
On Wed, Jul 29, 2009 at 03:03:27PM +0530, joshi chandran wrote: > > I can find the definition of MD5_Update() and MD5_Final() . But was > not able to find the definition for MD5_Init() in > crypto/md5/md5_dgst.c what version of openssl are you using? I checked a 1.1.0 snapshot and 0.9.8g, it's

Re: Not able to find Definition of MD5_Init, MD5_Update and MD5_Final?

2009-07-29 Thread joshi chandran
Thanks Martin. I can find the definition of MD5_Update() and MD5_Final() . But was not able to find the definition for MD5_Init() in crypto/md5/md5_dgst.c On Wed, Jul 29, 2009 at 1:38 PM, Martin Kaiser wrote: > Hello Joshi, > > On Wed, Jul 29, 2009 at 01:13:27PM +0530, joshi chandran wrote: >

Re: Not able to find Definition of MD5_Init, MD5_Update and MD5_Final?

2009-07-29 Thread Martin Kaiser
Hello Joshi, On Wed, Jul 29, 2009 at 01:13:27PM +0530, joshi chandran wrote: > , I want to find the definition of this function. The prototype of > this function is there in md5.h file but when i tried to find the code > for this function , i was not able to find any code related to this > functi

Re: Not able to find Definition of MD5_Init, MD5_Update and MD5_Final?

2009-07-29 Thread joshi chandran
, I want to find the definition of this function. The prototype of this function is there in md5.h file but when i tried to find the code for this function , i was not able to find any code related to this function. Thanks in advance Rajan On Wed, Jul 29, 2009 at 1:06 PM, Neil Dugan wrote: > r

Re: Not able to find Definition of MD5_Init, MD5_Update and MD5_Final?

2009-07-29 Thread Neil Dugan
rajanchittil wrote: Hi All, I was trying to figure out the Definition for this function 1. MD5_Init 2. MD5_Update 3. MD5_Final But i went through the openssl source code but was not bale to find the definition of it. Can any one please help me regarding the same. Thanks in advance Rajan