1/*
2Copyright (C) 1999-2007 The Botan Project. All rights reserved.
3
4Redistribution and use in source and binary forms, for any use, with or without
5modification, is permitted provided that the following conditions are met:
6
71. Redistributions of source code must retain the above copyright notice, this
8list of conditions, and the following disclaimer.
9
102. Redistributions in binary form must reproduce the above copyright notice,
11this list of conditions, and the following disclaimer in the documentation
12and/or other materials provided with the distribution.
13
14THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) "AS IS" AND ANY EXPRESS OR IMPLIED
15WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
16MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED.
17
18IN NO EVENT SHALL THE AUTHOR(S) OR CONTRIBUTOR(S) BE LIABLE FOR ANY DIRECT,
19INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
20BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
22LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
23OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
24ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25*/
26// LICENSEHEADER_END
27namespace QCA { // WRAPNS_LINE
28/*************************************************
29 * Module Factory Header File *
30 * (C) 1999-2007 The Botan Project *
31 *************************************************/
32
33#ifndef BOTAN_MODULE_FACTORIES_H__
34#define BOTAN_MODULE_FACTORIES_H__
35
36#ifndef BOTAN_TOOLS_ONLY
37} // WRAPNS_LINE
38#include <botan/init.h>
39namespace QCA { // WRAPNS_LINE
40#endif
41} // WRAPNS_LINE
42#include <string>
43namespace QCA { // WRAPNS_LINE
44} // WRAPNS_LINE
45#include <vector>
46namespace QCA { // WRAPNS_LINE
47
48namespace Botan {
49
50/*************************************************
51 * Module Builder Interface *
52 *************************************************/
53class Modules
54{
55public:
56 virtual class Mutex_Factory *mutex_factory() const = 0;
57#ifndef BOTAN_TOOLS_ONLY
58 virtual class Timer *timer() const = 0;
59 virtual class Charset_Transcoder *transcoder() const = 0;
60#endif
61
62 virtual std::string default_allocator() const = 0;
63
64 virtual std::vector<class Allocator *> allocators() const = 0;
65#ifndef BOTAN_TOOLS_ONLY
66 virtual std::vector<class EntropySource *> entropy_sources() const = 0;
67 virtual std::vector<class Engine *> engines() const = 0;
68#endif
69
70 virtual ~Modules()
71 {
72 }
73};
74
75/*************************************************
76 * Built In Modules *
77 *************************************************/
78class Builtin_Modules : public Modules
79{
80public:
81 class Mutex_Factory *mutex_factory() const override;
82#ifndef BOTAN_TOOLS_ONLY
83 class Timer *timer() const;
84 class Charset_Transcoder *transcoder() const;
85#endif
86
87 std::string default_allocator() const override;
88
89 std::vector<class Allocator *> allocators() const override;
90#ifndef BOTAN_TOOLS_ONLY
91 std::vector<class EntropySource *> entropy_sources() const;
92 std::vector<class Engine *> engines() const;
93#endif
94
95#ifdef BOTAN_TOOLS_ONLY
96 Builtin_Modules();
97#else
98 Builtin_Modules(const InitializerOptions &);
99#endif
100private:
101#ifdef BOTAN_TOOLS_ONLY
102 const bool should_lock;
103#else
104 const bool should_lock, use_engines;
105#endif
106};
107
108}
109
110#endif
111} // WRAPNS_LINE
112

source code of qca/src/botantools/botan/botan/modules.h