aboutsummaryrefslogtreecommitdiff
path: root/src/cryptohash.cpp
blob: 0fa2a2550d0a27105dc7f5d83d19d96dcfbd32c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "bu/cryptohash.h"

Bu::CryptoHash::CryptoHash()
{
}

Bu::CryptoHash::~CryptoHash()
{
}

void Bu::CryptoHash::addData( const Bu::FString &sData )
{
	addData( sData.getStr(), sData.getSize() );
}