#ifndef ACCELERATEDCRYPTOGRAPHICHASH_H #define ACCELERATEDCRYPTOGRAPHICHASH_H /* * SPDX-License-Identifier: Apache-2.0 * Copyright (C) 2020 Raspberry Pi Ltd */ #include #include struct AcceleratedCryptographicHash { private: struct impl; std::unique_ptr p_Impl; public: explicit AcceleratedCryptographicHash(QCryptographicHash::Algorithm method); ~AcceleratedCryptographicHash(); void addData(const char *data, int length); void addData(const QByteArray &data); QByteArray result(); }; #endif // ACCELERATEDCRYPTOGRAPHICHASH_H