aboutsummaryrefslogtreecommitdiff
path: root/src/cryptohash.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2012-03-25 20:00:08 +0000
committerMike Buland <eichlan@xagasoft.com>2012-03-25 20:00:08 +0000
commit469bbcf0701e1eb8a6670c23145b0da87357e178 (patch)
treeb5b062a16e46a6c5d3410b4e574cd0cc09057211 /src/cryptohash.cpp
parentee1b79396076edc4e30aefb285fada03bb45e80d (diff)
downloadlibbu++-469bbcf0701e1eb8a6670c23145b0da87357e178.tar.gz
libbu++-469bbcf0701e1eb8a6670c23145b0da87357e178.tar.bz2
libbu++-469bbcf0701e1eb8a6670c23145b0da87357e178.tar.xz
libbu++-469bbcf0701e1eb8a6670c23145b0da87357e178.zip
Code is all reorganized. We're about ready to release. I should write up a
little explenation of the arrangement.
Diffstat (limited to 'src/cryptohash.cpp')
-rw-r--r--src/cryptohash.cpp38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/cryptohash.cpp b/src/cryptohash.cpp
deleted file mode 100644
index ddd293c..0000000
--- a/src/cryptohash.cpp
+++ /dev/null
@@ -1,38 +0,0 @@
1/*
2 * Copyright (C) 2007-2011 Xagasoft, All rights reserved.
3 *
4 * This file is part of the libbu++ library and is released under the
5 * terms of the license contained in the file LICENSE.
6 */
7
8#include "bu/cryptohash.h"
9
10Bu::CryptoHash::CryptoHash()
11{
12}
13
14Bu::CryptoHash::~CryptoHash()
15{
16}
17
18void Bu::CryptoHash::addData( const Bu::String &sData )
19{
20 addData( sData.getStr(), sData.getSize() );
21}
22
23Bu::String Bu::CryptoHash::getHexResult()
24{
25 Bu::String sResult = getResult();
26 Bu::String sRet( 2*sResult.getSize() );
27 static const char hex_tab[] = {"0123456789abcdef"};
28
29 int k = 0;
30 for( int i = 0; i < sResult.getSize(); i++ )
31 {
32 sRet[k++] = hex_tab[(((unsigned char)sResult[i])>>4) & 0xF];
33 sRet[k++] = hex_tab[((unsigned char)sResult[i]) & 0xF];
34 }
35
36 return sRet;
37}
38