New in version 2.2.
This module implements the HMAC algorithm as described by RFC 2104.
update(msg)
is made. digestmod is the digest
module for the HMAC object to use. It defaults to the
md5 module.
An HMAC object has the following methods:
m.update(a); m.update(b)
is equivalent to
m.update(a + b)
.