home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _83dd698ccc17f132e502ae825be5da24 < prev    next >
Text File  |  2000-03-23  |  3KB  |  98 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Digest::MD2 - Perl interface to the MD2 Algorithm</TITLE>
  5. <LINK REL="stylesheet" HREF="../../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> Digest::MD2 - Perl interface to the MD2 Algorithm</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  26.     <LI><A HREF="#copyright">COPYRIGHT</A></LI>
  27.     <LI><A HREF="#author">AUTHOR</A></LI>
  28. </UL>
  29. <!-- INDEX END -->
  30.  
  31. <HR>
  32. <P>
  33. <H1><A NAME="name">NAME</A></H1>
  34. <P>Digest::MD2 - Perl interface to the MD2 Algorithm</P>
  35. <P>
  36. <HR>
  37. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  38. <UL>
  39. <LI>Linux</LI>
  40. <LI>Solaris</LI>
  41. <LI>Windows</LI>
  42. </UL>
  43. <HR>
  44. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  45. <PRE>
  46.  # Functional style
  47.  use Digest::MD2  qw(md2 md2_hex md2_base64);</PRE>
  48. <PRE>
  49.  $digest = md2($data);
  50.  $digest = md2_hex($data);
  51.  $digest = md2_base64($data);</PRE>
  52. <PRE>
  53.  # OO style
  54.  use Digest::MD2;</PRE>
  55. <PRE>
  56.  $ctx = Digest::MD2->new;</PRE>
  57. <PRE>
  58.  $ctx->add($data);
  59.  $ctx->addfile(*FILE);</PRE>
  60. <PRE>
  61.  $digest = $ctx->digest;
  62.  $digest = $ctx->hexdigest;
  63.  $digest = $ctx->b64digest;</PRE>
  64. <P>
  65. <HR>
  66. <H1><A NAME="description">DESCRIPTION</A></H1>
  67. <P>The <CODE>Digest::MD2</CODE> module allows you to use the RSA Data Security
  68. Inc. MD2 Message Digest algorithm from within Perl programs.  The
  69. algorithm takes as input a message of arbitrary length and produces as
  70. output a 128-bit ``fingerprint'' or ``message digest'' of the input.</P>
  71. <P>The <CODE>Digest::MD2</CODE> programming interface is identical to the interface
  72. of <CODE>Digest::MD5</CODE>.</P>
  73. <P>
  74. <HR>
  75. <H1><A NAME="see also">SEE ALSO</A></H1>
  76. <P><A HREF="../../../site/lib/Digest/MD5.html">the Digest::MD5 manpage</A></P>
  77. <P>
  78. <HR>
  79. <H1><A NAME="copyright">COPYRIGHT</A></H1>
  80. <P>This library is free software; you can redistribute it and/or
  81. modify it under the same terms as Perl itself.</P>
  82. <PRE>
  83.  Copyright 1998 Gisle Aas.
  84.  Copyright 1990-1992 RSA Data Security, Inc.</PRE>
  85. <P>
  86. <HR>
  87. <H1><A NAME="author">AUTHOR</A></H1>
  88. <P>Gisle Aas <<A HREF="mailto:gisle@aas.no">gisle@aas.no</A>></P>
  89. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  90. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  91. <STRONG><P CLASS=block> Digest::MD2 - Perl interface to the MD2 Algorithm</P></STRONG>
  92. </TD></TR>
  93. </TABLE>
  94.  
  95. </BODY>
  96.  
  97. </HTML>
  98.