in reply to Re: Is there any module in perl which supports the algorithm AKAv1-MD5?
in thread Is there any module in perl which supports the algorithm AKAv1-MD5?


Hi Dharry

Many many thanks for your reply. I have visited pjsip.org. There i have found the module related to the Akv1-MD5.But it is in C-language. I have downloaded that module.But where to keep that module, can i place it in my perl lib (or to install it). How i can use that module in my perl program. Plz suggest.

Regd's
Sanjay
  • Comment on Re^2: Is there any module in perl which supports the algorithm AKAv1-MD5?

Replies are listed 'Best First'.
Re^3: Is there any module in perl which supports the algorithm AKAv1-MD5?
by andreas1234567 (Vicar) on Jan 08, 2009 at 12:07 UTC
    You should learn perlxs.
    XS is an interface description file format used to create an extension interface between Perl and C code (or a C library) which one wishes to use with Perl.
    perlxstut is a good starting point.
    --
    No matter how great and destructive your problems may seem now, remember, you've probably only seen the tip of them. [1]
Re^3: Is there any module in perl which supports the algorithm AKAv1-MD5?
by Corion (Patriarch) on Jan 08, 2009 at 11:49 UTC

    The code is in the C language. Perl is not C. You will need to translate the code from the C language into equivalent code in the Perl language.

Re^3: Is there any module in perl which supports the algorithm AKAv1-MD5?
by gone2015 (Deacon) on Jan 08, 2009 at 15:30 UTC

    I found Inline fairly straightforward to use.