Difference between revisions of "HMAC-MD5"

From Free Pascal wiki
Jump to navigationJump to search
m
m (→‎See also: Fix broken mailing list link)
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
{{HMAC-MD5}}
 +
 
== Overview ==
 
== Overview ==
 
HMAC-MD5 is a HMAC <todo: insert description> using the MD5 hash algorithm.
 
HMAC-MD5 is a HMAC <todo: insert description> using the MD5 hash algorithm.
Line 6: Line 8:
 
Example code: packages/hash/examples/hmd5.pp
 
Example code: packages/hash/examples/hmd5.pp
  
== See also: ==
+
== See also ==
* Mailing list thread started by the author of the code: [http://thread.gmane.org/gmane.comp.compilers.free-pascal.general/31172/focus=31182]
+
 
 +
* [https://fpc-pascal.freepascal.narkive.com/eyV27Nra/hmac-sha1-and-fpc Mailing list thread] started by the author of the code.
 +
 
 
* [[HMAC-SHA1]]
 
* [[HMAC-SHA1]]
  
[[Category:FPC]]
+
* [[hash]]
[[Category:Software security]]
 
[[Category:Packages]]
 

Latest revision as of 03:05, 28 October 2021

English (en) français (fr)

Overview

HMAC-MD5 is a HMAC <todo: insert description> using the MD5 hash algorithm.

It is implemented in FPC trunk revision 27319 of March 2014.

Example code: packages/hash/examples/hmd5.pp

See also