crypto: Fix whitespace errors

This commit is contained in:
Mathias Tausig 2018-10-17 15:20:56 +02:00 committed by Mathias Tausig
parent 41667cef66
commit 4272ccf281
3 changed files with 5 additions and 7 deletions

View File

@ -67,7 +67,6 @@ int cipher_encrypt_ctr(cipher_t* cipher, uint8_t nonce_counter[16],
*
* @return Length of decrypted data on a successful decryption
* @return A negative error code if something went wrong
*
*/
int cipher_decrypt_ctr(cipher_t* cipher, uint8_t nonce_counter[16],
uint8_t nonce_len, uint8_t* input, size_t length,

View File

@ -58,7 +58,6 @@ int cipher_encrypt_ecb(cipher_t* cipher, uint8_t* input, size_t length,
*
* @return Length of decrypted data on a successful decryption
* @return A negative error code if something went wrong
*
*/
int cipher_decrypt_ecb(cipher_t* cipher, uint8_t* input, size_t length,
uint8_t* output);