blob: 3e3940499306157bb86c97b24363236334361e65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/*
* OpenSSL Engine
* (C) 1999-2007 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_ENGINE_OPENSSL_H__
#define BOTAN_ENGINE_OPENSSL_H__
#include <botan/engine.h>
namespace Botan {
/**
* OpenSSL Engine
*/
class OpenSSL_Engine : public Engine
{
public:
std::string provider_name() const override { return "openssl"; }
BlockCipher* find_block_cipher(const SCAN_Name&,
Algorithm_Factory&) const override;
StreamCipher* find_stream_cipher(const SCAN_Name&,
Algorithm_Factory&) const override;
HashFunction* find_hash(const SCAN_Name&, Algorithm_Factory&) const override;
};
}
#endif
|