/src/botan/build/include/internal/botan/internal/x919_mac.h
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * ANSI X9.19 MAC |
3 | | * (C) 1999-2007 Jack Lloyd |
4 | | * |
5 | | * Botan is released under the Simplified BSD License (see license.txt) |
6 | | */ |
7 | | |
8 | | #ifndef BOTAN_ANSI_X919_MAC_H_ |
9 | | #define BOTAN_ANSI_X919_MAC_H_ |
10 | | |
11 | | #include <botan/block_cipher.h> |
12 | | #include <botan/mac.h> |
13 | | |
14 | | namespace Botan { |
15 | | |
16 | | /** |
17 | | * DES/3DES-based MAC from ANSI X9.19 |
18 | | */ |
19 | | class ANSI_X919_MAC final : public MessageAuthenticationCode { |
20 | | public: |
21 | | void clear() override; |
22 | | std::string name() const override; |
23 | | |
24 | 0 | size_t output_length() const override { return 8; } |
25 | | |
26 | | std::unique_ptr<MessageAuthenticationCode> new_object() const override; |
27 | | |
28 | 0 | Key_Length_Specification key_spec() const override { return Key_Length_Specification(8, 16, 8); } |
29 | | |
30 | | bool has_keying_material() const override; |
31 | | |
32 | | ANSI_X919_MAC(); |
33 | | |
34 | | ANSI_X919_MAC(const ANSI_X919_MAC&) = delete; |
35 | | ANSI_X919_MAC& operator=(const ANSI_X919_MAC&) = delete; |
36 | | |
37 | | private: |
38 | | void add_data(std::span<const uint8_t>) override; |
39 | | void final_result(std::span<uint8_t>) override; |
40 | | void key_schedule(std::span<const uint8_t>) override; |
41 | | |
42 | | std::unique_ptr<BlockCipher> m_des1, m_des2; |
43 | | secure_vector<uint8_t> m_state; |
44 | | size_t m_position; |
45 | | }; |
46 | | |
47 | | } // namespace Botan |
48 | | |
49 | | #endif |