in reply to Re: How to Add MD5 C program using Inline::C to a perl program???
in thread How to Add MD5 C program using Inline::C to a perl program???


I agree with your point and already worked on that .But the MD5 is a written in C and it has a workspace which i want to add in to my perl program.so that i just pass the argument like pszAlg, pszUser, pszRealm, pszPass, pszNonce,pszCNonce, HA1 from my perl program and obtain the value return from the C MD5.
  • Comment on Re^2: How to Add MD5 C program using Inline::C to a perl program???

Replies are listed 'Best First'.
Re^3: How to Add MD5 C program using Inline::C to a perl program???
by blazar (Canon) on Oct 20, 2006 at 15:36 UTC
    I agree with your point and already worked on that .But the MD5 is a written in C and it has a workspace which i want to add in to my perl program.

    I apologize since I've not touched C in quite a lot of years, but sincerely I can't remember "workspaces" in C. So, what is a workspace? What is the corresponding Perl structure/concept/whatever it should be translated into?

    so that i just pass the argument like pszAlg, pszUser, pszRealm, pszPass, pszNonce,pszCNonce, HA1 from my perl program and obtain the value return from the C MD5.

    I'm not really sure if I understand what you mean:

    pszAlg, pszUser, pszRealm, pszPass, pszNonce,pszCNonce, HA1

    these are not valid Perl identifiers or values, unless you mean them to be subs, so I don't see how you can pass them "from your perl program", and if they are subs, then what's the problem with

    my $md5=MD5_XS_sub(pszAlg, pszUser, pszRealm, pszPass, pszNonce,pszCNo +nce, HA1); # ?!?