blob: ce5427ad9d78907cae9ecb491a3e36d813825a6d (
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
|
/*
* Cipher Modes
* (C) 2013 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#ifndef BOTAN_CIPHER_MODE_H__
#define BOTAN_CIPHER_MODE_H__
#include <botan/transform.h>
namespace Botan {
/**
* Interface for cipher modes
*/
class BOTAN_DLL Cipher_Mode : public Keyed_Transform
{
public:
/**
* Returns true iff this mode provides authentication as well as
* confidentiality.
*/
virtual bool authenticated() const { return false; }
};
}
#endif
|