aboutsummaryrefslogtreecommitdiff
path: root/src/cryptohash.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cryptohash.cpp')
-rw-r--r--src/cryptohash.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/cryptohash.cpp b/src/cryptohash.cpp
new file mode 100644
index 0000000..0fa2a25
--- /dev/null
+++ b/src/cryptohash.cpp
@@ -0,0 +1,15 @@
1#include "bu/cryptohash.h"
2
3Bu::CryptoHash::CryptoHash()
4{
5}
6
7Bu::CryptoHash::~CryptoHash()
8{
9}
10
11void Bu::CryptoHash::addData( const Bu::FString &sData )
12{
13 addData( sData.getStr(), sData.getSize() );
14}
15