~mdcallag/+junk/5.1-map

« back to all changes in this revision

Viewing changes to extra/yassl/taocrypt/include/hmac.hpp

  • Committer: msvensson at pilot
  • Date: 2007-04-24 09:11:45 UTC
  • mfrom: (2469.1.106)
  • Revision ID: sp1r-msvensson@pilot.blaudden-20070424091145-10463
Merge pilot.blaudden:/home/msvensson/mysql/my51-m-mysql_upgrade
into  pilot.blaudden:/home/msvensson/mysql/mysql-5.1-maint

Show diffs side-by-side

added added

removed removed

Lines of Context:
109
109
 
110
110
// Update
111
111
template <class T>
112
 
void HMAC<T>::Update(const byte* msg_arg, word32 length)
 
112
void HMAC<T>::Update(const byte* msg, word32 length)
113
113
{
114
114
    if (!innerHashKeyed_)
115
115
        KeyInnerHash();
116
 
    mac_.Update(msg_arg, length);
 
116
    mac_.Update(msg, length);
117
117
}
118
118
 
119
119