diff options
Diffstat (limited to 'libs/libaxolotl/src/group_cipher.h')
-rw-r--r-- | libs/libaxolotl/src/group_cipher.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libs/libaxolotl/src/group_cipher.h b/libs/libaxolotl/src/group_cipher.h index 2ac7e6508f..50b194c06f 100644 --- a/libs/libaxolotl/src/group_cipher.h +++ b/libs/libaxolotl/src/group_cipher.h @@ -67,7 +67,6 @@ void *group_cipher_get_user_data(group_cipher *cipher); * before they're able to successfully store the plaintext to disk. * * @param callback the callback function to set - * @param user_data user data pointer provided to the callback */ void group_cipher_set_decryption_callback(group_cipher *cipher, int (*callback)(group_cipher *cipher, signal_buffer *plaintext, void *decrypt_context)); @@ -75,8 +74,8 @@ void group_cipher_set_decryption_callback(group_cipher *cipher, /** * Encrypt a message. * - * @param padded_message The plaintext message bytes, optionally padded to a constant multiple. - * @param padded_message_len The length of the data pointed to by padded_message + * @param padded_plaintext The plaintext message bytes, optionally padded to a constant multiple. + * @param padded_plaintext_len The length of the data pointed to by padded_message * @param encrypted_message Set to a ciphertext message encrypted to the group+sender+device tuple. * * @retval SG_SUCCESS Success |