/src/botan/build/include/botan/ccm.h
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * CCM Mode |
3 | | * (C) 2013 Jack Lloyd |
4 | | * (C) 2016 Daniel Neus, Rohde & Schwarz Cybersecurity |
5 | | * |
6 | | * Botan is released under the Simplified BSD License (see license.txt) |
7 | | */ |
8 | | |
9 | | #ifndef BOTAN_AEAD_CCM_H_ |
10 | | #define BOTAN_AEAD_CCM_H_ |
11 | | |
12 | | #include <botan/aead.h> |
13 | | #include <botan/block_cipher.h> |
14 | | |
15 | | BOTAN_FUTURE_INTERNAL_HEADER(ccm.h) |
16 | | |
17 | | namespace Botan { |
18 | | |
19 | | /** |
20 | | * Base class for CCM encryption and decryption |
21 | | * @see RFC 3610 |
22 | | */ |
23 | | class BOTAN_PUBLIC_API(2,0) CCM_Mode : public AEAD_Mode |
24 | | { |
25 | | public: |
26 | | size_t process(uint8_t buf[], size_t sz) override; |
27 | | |
28 | | void set_associated_data(const uint8_t ad[], size_t ad_len) override; |
29 | | |
30 | 0 | bool associated_data_requires_key() const override { return false; } |
31 | | |
32 | | std::string name() const override; |
33 | | |
34 | | size_t update_granularity() const override; |
35 | | |
36 | | Key_Length_Specification key_spec() const override; |
37 | | |
38 | | bool valid_nonce_length(size_t) const override; |
39 | | |
40 | | size_t default_nonce_length() const override; |
41 | | |
42 | | void clear() override; |
43 | | |
44 | | void reset() override; |
45 | | |
46 | 1.76k | size_t tag_size() const override { return m_tag_size; } |
47 | | |
48 | | protected: |
49 | | CCM_Mode(BlockCipher* cipher, size_t tag_size, size_t L); |
50 | | |
51 | 2.35k | size_t L() const { return m_L; } |
52 | | |
53 | 393 | const BlockCipher& cipher() const { return *m_cipher; } |
54 | | |
55 | | void encode_length(uint64_t len, uint8_t out[]); |
56 | | |
57 | | void inc(secure_vector<uint8_t>& C); |
58 | | |
59 | 393 | const secure_vector<uint8_t>& ad_buf() const { return m_ad_buf; } |
60 | | |
61 | 786 | secure_vector<uint8_t>& msg_buf() { return m_msg_buf; } |
62 | | |
63 | | secure_vector<uint8_t> format_b0(size_t msg_size); |
64 | | secure_vector<uint8_t> format_c0(); |
65 | | private: |
66 | | void start_msg(const uint8_t nonce[], size_t nonce_len) override; |
67 | | |
68 | | void key_schedule(const uint8_t key[], size_t length) override; |
69 | | |
70 | | const size_t m_tag_size; |
71 | | const size_t m_L; |
72 | | |
73 | | std::unique_ptr<BlockCipher> m_cipher; |
74 | | secure_vector<uint8_t> m_nonce, m_msg_buf, m_ad_buf; |
75 | | }; |
76 | | |
77 | | /** |
78 | | * CCM Encryption |
79 | | */ |
80 | | class BOTAN_PUBLIC_API(2,0) CCM_Encryption final : public CCM_Mode |
81 | | { |
82 | | public: |
83 | | /** |
84 | | * @param cipher a 128-bit block cipher |
85 | | * @param tag_size is how big the auth tag will be (even values |
86 | | * between 4 and 16 are accepted) |
87 | | * @param L length of L parameter. The total message length |
88 | | * must be less than 2**L bytes, and the nonce is 15-L bytes. |
89 | | */ |
90 | | CCM_Encryption(BlockCipher* cipher, size_t tag_size = 16, size_t L = 3) : |
91 | 151 | CCM_Mode(cipher, tag_size, L) {} |
92 | | |
93 | | void finish(secure_vector<uint8_t>& final_block, size_t offset = 0) override; |
94 | | |
95 | | size_t output_length(size_t input_length) const override |
96 | 277 | { return input_length + tag_size(); } |
97 | | |
98 | 0 | size_t minimum_final_size() const override { return 0; } |
99 | | }; |
100 | | |
101 | | /** |
102 | | * CCM Decryption |
103 | | */ |
104 | | class BOTAN_PUBLIC_API(2,0) CCM_Decryption final : public CCM_Mode |
105 | | { |
106 | | public: |
107 | | /** |
108 | | * @param cipher a 128-bit block cipher |
109 | | * @param tag_size is how big the auth tag will be (even values |
110 | | * between 4 and 16 are accepted) |
111 | | * @param L length of L parameter. The total message length |
112 | | * must be less than 2**L bytes, and the nonce is 15-L bytes. |
113 | | */ |
114 | | CCM_Decryption(BlockCipher* cipher, size_t tag_size = 16, size_t L = 3) : |
115 | 160 | CCM_Mode(cipher, tag_size, L) {} |
116 | | |
117 | | void finish(secure_vector<uint8_t>& final_block, size_t offset = 0) override; |
118 | | |
119 | | size_t output_length(size_t input_length) const override |
120 | 116 | { |
121 | 116 | BOTAN_ASSERT(input_length >= tag_size(), "Sufficient input"); |
122 | 116 | return input_length - tag_size(); |
123 | 116 | } |
124 | | |
125 | 118 | size_t minimum_final_size() const override { return tag_size(); } |
126 | | }; |
127 | | |
128 | | } |
129 | | |
130 | | #endif |