Files
TCPlayerbotCore/src/shared/Auth/Hmac.cpp
T

52 lines
1.6 KiB
C++
Raw Normal View History

/*
* Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
2008-10-14 11:57:03 -05:00
*
* Copyright (C) 2008-2009 Trinity <http://www.trinitycore.org/>
2008-10-02 16:23:55 -05:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2008-10-14 11:57:03 -05:00
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2008-10-02 16:23:55 -05:00
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
2008-10-14 11:57:03 -05:00
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2008-10-02 16:23:55 -05:00
*/
#include "Auth/Hmac.h"
#include "BigNumber.h"
2009-06-11 00:45:59 -05:00
HmacHash::HmacHash(uint32 len, uint8 *seed)
2008-10-02 16:23:55 -05:00
{
2009-06-11 00:45:59 -05:00
ASSERT(len == SEED_KEY_SIZE);
2008-10-02 16:23:55 -05:00
HMAC_CTX_init(&m_ctx);
2009-06-11 00:45:59 -05:00
HMAC_Init_ex(&m_ctx, seed, SEED_KEY_SIZE, EVP_sha1(), NULL);
2008-10-02 16:23:55 -05:00
}
HmacHash::~HmacHash()
{
HMAC_CTX_cleanup(&m_ctx);
}
void HmacHash::UpdateBigNumber(BigNumber *bn)
{
UpdateData(bn->AsByteArray(), bn->GetNumBytes());
}
void HmacHash::UpdateData(const uint8 *data, int length)
{
HMAC_Update(&m_ctx, data, length);
}
void HmacHash::Finalize()
{
uint32 length = 0;
2009-06-11 00:45:59 -05:00
HMAC_Final(&m_ctx, (uint8*)m_digest, &length);
2008-10-02 16:23:55 -05:00
ASSERT(length == SHA_DIGEST_LENGTH)
}
2009-06-11 00:45:59 -05:00
uint8 *HmacHash::ComputeHash(BigNumber *bn)
{
HMAC_Update(&m_ctx, bn->AsByteArray(), bn->GetNumBytes());
Finalize();
return (uint8*)m_digest;
}