diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-02-23 20:07:00 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-02-23 20:08:36 +0300 |
commit | 3a99b3d6aa8be21eab786bd77b3329822a51a828 (patch) | |
tree | 4044601268150bde9ef4084fed8e2687e4947489 /src/utils/sha256.h | |
parent | e304be2e573cee65cdaf71fa1eb7f96fda1c0358 (diff) | |
download | mv-3a99b3d6aa8be21eab786bd77b3329822a51a828.tar.gz mv-3a99b3d6aa8be21eab786bd77b3329822a51a828.tar.bz2 mv-3a99b3d6aa8be21eab786bd77b3329822a51a828.tar.xz mv-3a99b3d6aa8be21eab786bd77b3329822a51a828.zip |
Remove manaserv support.
Diffstat (limited to 'src/utils/sha256.h')
-rw-r--r-- | src/utils/sha256.h | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/src/utils/sha256.h b/src/utils/sha256.h deleted file mode 100644 index 54bb92f3c..000000000 --- a/src/utils/sha256.h +++ /dev/null @@ -1,36 +0,0 @@ -/* - * The ManaPlus Client - * Copyright (C) 2007-2009 The Mana World Development Team - * Copyright (C) 2009-2010 The Mana Developers - * Copyright (C) 2011-2012 The ManaPlus Developers - * - * This file is part of The ManaPlus Client. - * - * 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 - * 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 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * 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, see <http://www.gnu.org/licenses/>. - */ - -#ifndef UTILS_SHA256_H -#define UTILS_SHA256_H - -#include <string> - -/** - * Returns the SHA-256 hash for the given string. - * - * @param string the string to create the SHA-256 hash for - * @return the SHA-256 hash for the given string. - */ -std::string sha256(const std::string &string); - -#endif // UTILS_SHA256_H |