2023-02-25 19:18:13 +00:00
|
|
|
// Copyright (c) 2005-2023 Jay Berkenbilt
|
2017-09-14 16:44:31 +00:00
|
|
|
//
|
|
|
|
// This file is part of qpdf.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
// Versions of qpdf prior to version 7 were released under the terms
|
|
|
|
// of version 2.0 of the Artistic License. At your option, you may
|
|
|
|
// continue to consider qpdf to be licensed under those terms. Please
|
|
|
|
// see the manual for additional information.
|
2013-11-30 17:02:56 +00:00
|
|
|
|
2018-08-12 18:07:22 +00:00
|
|
|
#ifndef RANDOMDATAPROVIDER_HH
|
|
|
|
#define RANDOMDATAPROVIDER_HH
|
2013-11-30 17:02:56 +00:00
|
|
|
|
2019-06-22 00:27:31 +00:00
|
|
|
#include <qpdf/DLL.h>
|
2023-05-20 11:22:32 +00:00
|
|
|
#include <cstring> // for size_t
|
2013-11-30 17:02:56 +00:00
|
|
|
|
2019-06-22 00:27:31 +00:00
|
|
|
class QPDF_DLL_CLASS RandomDataProvider
|
2013-11-30 17:02:56 +00:00
|
|
|
{
|
|
|
|
public:
|
2022-04-15 23:44:07 +00:00
|
|
|
virtual ~RandomDataProvider() = default;
|
2013-11-30 17:02:56 +00:00
|
|
|
virtual void provideRandomData(unsigned char* data, size_t len) = 0;
|
|
|
|
|
|
|
|
protected:
|
2022-04-10 17:29:10 +00:00
|
|
|
QPDF_DLL_PRIVATE
|
|
|
|
RandomDataProvider() = default;
|
2013-11-30 17:02:56 +00:00
|
|
|
|
|
|
|
private:
|
2020-04-03 16:04:54 +00:00
|
|
|
RandomDataProvider(RandomDataProvider const&) = delete;
|
|
|
|
RandomDataProvider& operator=(RandomDataProvider const&) = delete;
|
2013-11-30 17:02:56 +00:00
|
|
|
};
|
|
|
|
|
2018-08-12 18:07:22 +00:00
|
|
|
#endif // RANDOMDATAPROVIDER_HH
|