2010-09-11 19:49:30 +02:00
|
|
|
/*
|
2021-04-04 08:56:00 -04:00
|
|
|
* Copyright (C) 2021 KeePassXC Team <team@keepassxc.org>
|
2010-09-11 19:49:30 +02:00
|
|
|
* Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
|
|
|
|
*
|
|
|
|
* 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 or (at your option)
|
|
|
|
* version 3 of the License.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2021-04-04 08:56:00 -04:00
|
|
|
#ifndef KEEPASSXC_CRYPTO_H
|
|
|
|
#define KEEPASSXC_CRYPTO_H
|
2010-09-11 19:49:30 +02:00
|
|
|
|
2014-06-15 11:17:40 +02:00
|
|
|
#include <QString>
|
|
|
|
|
2021-04-04 08:56:00 -04:00
|
|
|
namespace Crypto
|
2010-09-11 19:49:30 +02:00
|
|
|
{
|
2021-04-04 08:56:00 -04:00
|
|
|
bool init();
|
|
|
|
QString errorString();
|
|
|
|
QString debugInfo();
|
|
|
|
}; // namespace Crypto
|
2010-09-11 19:49:30 +02:00
|
|
|
|
2021-04-04 08:56:00 -04:00
|
|
|
#endif // KEEPASSXC_CRYPTO_H
|