/* * steghide 0.5.1 - a steganography program * Copyright (C) 1999-2003 Stefan Hetzl * * 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 (at your option) 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, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * */ #include #include #include #include "common.h" #include "error.h" #include "MHashKeyGen.h" MHashKeyGen::MHashKeyGen () { AlgorithmData.count = 0 ; AlgorithmData.salt = NULL ; AlgorithmData.salt_size = 0 ; } MHashKeyGen::MHashKeyGen (keygenid kgalgo, hashid halgo, unsigned int keysize) { setKeyGenAlgorithm (kgalgo) ; setKeySize (keysize) ; setHashAlgorithm (halgo) ; AlgorithmData.count = 0 ; AlgorithmData.salt = NULL ; AlgorithmData.salt_size = 0 ; } MHashKeyGen::~MHashKeyGen () { if (AlgorithmData.salt != NULL) { free (AlgorithmData.salt) ; } } std::vector MHashKeyGen::createKey (std::string password) { char *passwd = (char *) s_malloc (password.size() + 1) ; strcpy (passwd, password.c_str()) ; int passwdlen = strlen (passwd) ; unsigned char *key = (unsigned char *) s_malloc (KeySize) ; if (mhash_keygen_ext (Algorithm, AlgorithmData, key, KeySize, (unsigned char *) passwd, passwdlen) < 0) { throw SteghideError (_("could not generate key using libmhash.")) ; } std::vector retval (KeySize) ; for (unsigned int i = 0 ; i < KeySize ; i++) { retval[i] = key[i] ; } free (passwd) ; free (key) ; return retval ; } void MHashKeyGen::setKeySize (unsigned int keysize) { KeySize = keysize ; } void MHashKeyGen::setKeyGenAlgorithm (keygenid algo) { Algorithm = algo ; } void MHashKeyGen::setHashAlgorithm (hashid hashalgo) { AlgorithmData.hash_algorithm[0] = hashalgo ; } void MHashKeyGen::setHashAlgorithms (std::vector hashalgos) { myassert (hashalgos.size() <= 2) ; for (unsigned int i = 0 ; i < hashalgos.size() ; i++) { AlgorithmData.hash_algorithm[i] = hashalgos[i] ; } } void MHashKeyGen::setSalt (std::vector salt) { AlgorithmData.salt_size = salt.size() ; if (AlgorithmData.salt != NULL) { free (AlgorithmData.salt) ; } AlgorithmData.salt = s_malloc (AlgorithmData.salt_size) ; unsigned char *tmp = (unsigned char *) AlgorithmData.salt ; for (int i = 0 ; i < AlgorithmData.salt_size ; i++) { tmp[i] = salt[i] ; } } void *MHashKeyGen::s_malloc (size_t size) { void *retval = NULL ; if ((retval = malloc (size)) == NULL) { throw SteghideError (_("could not allocate memory.")) ; } return retval ; }