ccm.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2015 Freie Universität Berlin
3  *
4  * This file is subject to the terms and conditions of the GNU Lesser
5  * General Public License v2.1. See the file LICENSE in the top level
6  * directory for more details.
7  */
8 
20 #ifndef CRYPTO_MODES_CCM_H
21 #define CRYPTO_MODES_CCM_H
22 
23 #include "crypto/ciphers.h"
24 
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28 
33 #define CCM_ERR_INVALID_NONCE_LENGTH (-2)
34 #define CCM_ERR_INVALID_CBC_MAC (-3)
35 #define CCM_ERR_INVALID_DATA_LENGTH (-3)
36 #define CCM_ERR_INVALID_LENGTH_ENCODING (-4)
37 #define CCM_ERR_INVALID_MAC_LENGTH (-5)
38 
43 #define CCM_BLOCK_SIZE 16
44 
48 #define CCM_MAC_MAX_LEN 16
49 
72 int cipher_encrypt_ccm(const cipher_t *cipher,
73  const uint8_t *auth_data, uint32_t auth_data_len,
74  uint8_t mac_length, uint8_t length_encoding,
75  const uint8_t *nonce, size_t nonce_len,
76  const uint8_t *input, size_t input_len,
77  uint8_t *output);
78 
79 
102 int cipher_decrypt_ccm(const cipher_t *cipher,
103  const uint8_t *auth_data, uint32_t auth_data_len,
104  uint8_t mac_length, uint8_t length_encoding,
105  const uint8_t *nonce, size_t nonce_len,
106  const uint8_t *input, size_t input_len,
107  uint8_t *output);
108 
109 #ifdef __cplusplus
110 }
111 #endif
112 
113 #endif /* CRYPTO_MODES_CCM_H */
114 
cipher_t
basic struct for using block ciphers contains the cipher interface and the context
Definition: ciphers.h:104
cipher_decrypt_ccm
int cipher_decrypt_ccm(const cipher_t *cipher, const uint8_t *auth_data, uint32_t auth_data_len, uint8_t mac_length, uint8_t length_encoding, const uint8_t *nonce, size_t nonce_len, const uint8_t *input, size_t input_len, uint8_t *output)
Decrypt data of arbitrary length in ccm mode.
ciphers.h
Headers for the packet encryption class. They are used to encrypt single packets.
cipher_encrypt_ccm
int cipher_encrypt_ccm(const cipher_t *cipher, const uint8_t *auth_data, uint32_t auth_data_len, uint8_t mac_length, uint8_t length_encoding, const uint8_t *nonce, size_t nonce_len, const uint8_t *input, size_t input_len, uint8_t *output)
Encrypt and authenticate data of arbitrary length in ccm mode.