2015-02-01 21:03:28 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Simple x264 Launcher
|
2017-01-06 23:17:56 +01:00
|
|
|
// Copyright (C) 2004-2017 LoRd_MuldeR <MuldeR2@GMX.de>
|
2015-02-01 21:03:28 +01:00
|
|
|
//
|
|
|
|
// 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.,
|
|
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
//
|
|
|
|
// http://www.gnu.org/licenses/gpl-2.0.txt
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/*
|
|
|
|
BLAKE2 reference source code package - reference C implementations
|
|
|
|
|
|
|
|
Written in 2012 by Samuel Neves <sneves@dei.uc.pt>
|
|
|
|
|
|
|
|
To the extent possible under law, the author(s) have dedicated all copyright
|
|
|
|
and related and neighboring rights to this software to the public domain
|
|
|
|
worldwide. This software is distributed without any warranty.
|
|
|
|
|
|
|
|
You should have received a copy of the CC0 Public Domain Dedication along with
|
|
|
|
this software. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
//MUtils
|
|
|
|
#include <MUtils/Global.h>
|
2016-12-26 00:55:45 +01:00
|
|
|
#include <MUtils/Hash.h>
|
2015-02-01 21:03:28 +01:00
|
|
|
|
|
|
|
//Qt
|
|
|
|
#include <QByteArray>
|
|
|
|
#include <QFile>
|
|
|
|
|
|
|
|
namespace MUtils
|
|
|
|
{
|
|
|
|
namespace Hash
|
|
|
|
{
|
|
|
|
class MUTILS_API Blake2_Context;
|
|
|
|
|
2016-12-26 00:55:45 +01:00
|
|
|
class MUTILS_API Blake2 : public Hash
|
2015-02-01 21:03:28 +01:00
|
|
|
{
|
|
|
|
public:
|
2016-12-26 00:55:45 +01:00
|
|
|
Blake2(const char *const key = NULL);
|
|
|
|
virtual ~Blake2(void);
|
2015-02-01 21:03:28 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
Blake2_Context *const m_context;
|
|
|
|
bool m_finalized;
|
2016-12-26 00:55:45 +01:00
|
|
|
|
|
|
|
virtual bool process(const quint8 *const data, const quint32 len);
|
|
|
|
virtual QByteArray finalize(void);
|
2015-02-01 21:03:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|