diff options
Diffstat (limited to 'src/cryptohash.cpp')
| -rw-r--r-- | src/cryptohash.cpp | 15 |
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 | |||
| 3 | Bu::CryptoHash::CryptoHash() | ||
| 4 | { | ||
| 5 | } | ||
| 6 | |||
| 7 | Bu::CryptoHash::~CryptoHash() | ||
| 8 | { | ||
| 9 | } | ||
| 10 | |||
| 11 | void Bu::CryptoHash::addData( const Bu::FString &sData ) | ||
| 12 | { | ||
| 13 | addData( sData.getStr(), sData.getSize() ); | ||
| 14 | } | ||
| 15 | |||
