blob: 16c2124fb1b5be626de4c8e5eab0f4a88a22c3f1 (
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
|
/*
* PK Operation Types Forward Decls
* (C) 2016 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_PK_OPERATIONS_FWD_H__
#define BOTAN_PK_OPERATIONS_FWD_H__
namespace Botan {
namespace PK_Ops {
class Encryption;
class Decryption;
class Verification;
class Signature;
class Key_Agreement;
class KEM_Encryption;
class KEM_Decryption;
}
}
#endif
|