Skip to content
Snippets Groups Projects
Unverified Commit 5f8e37ee authored by Sebastian Meiling's avatar Sebastian Meiling Committed by GitHub
Browse files

Merge pull request #8294 from cladmi/pr/sys/crypto/ccm/fixup_docstring

sys/crypto/ccm: fix docstring value for 'nonce_len'
parents 1003cb99 5e22f61c
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,7 @@ extern "C" { ...@@ -44,7 +44,7 @@ extern "C" {
* (2^(8*length_enc)). * (2^(8*length_enc)).
* @param nonce Nounce for ctr mode encryption * @param nonce Nounce for ctr mode encryption
* @param nonce_len Length of the nonce in octets * @param nonce_len Length of the nonce in octets
* (maximum: 16-length_encoding) * (maximum: 15-length_encoding)
* @param input pointer to input data to encrypt * @param input pointer to input data to encrypt
* @param input_len length of the input data * @param input_len length of the input data
* @param output pointer to allocated memory for encrypted data. It * @param output pointer to allocated memory for encrypted data. It
...@@ -69,7 +69,7 @@ int cipher_encrypt_ccm(cipher_t* cipher, uint8_t* auth_data, ...@@ -69,7 +69,7 @@ int cipher_encrypt_ccm(cipher_t* cipher, uint8_t* auth_data,
* (2^(8*length_enc)). * (2^(8*length_enc)).
* @param nonce Nounce for ctr mode encryption * @param nonce Nounce for ctr mode encryption
* @param nonce_len Length of the nonce in octets * @param nonce_len Length of the nonce in octets
* (maximum: 16-length_encoding) * (maximum: 15-length_encoding)
* @param input pointer to input data to decrypt * @param input pointer to input data to decrypt
* @param input_len length of the input data * @param input_len length of the input data
* @param output pointer to allocated memory for decrypted data. It * @param output pointer to allocated memory for decrypted data. It
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment