diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2018-04-24 12:01:36 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2018-04-24 12:01:36 +0300 |
commit | 0b1150d20f49eb0ec82b57ab3fac727f346c0da0 (patch) | |
tree | 387c1d63df86419dd92f2c6adef701567c6bf91f /libs/libaxolotl/src/group_cipher.h | |
parent | 0998b447f51c40d2300db7f673e080de20e8f0be (diff) |
libs:
updated libsignal-c
protocols:
jabber: omemo:
used 31bit device id instead of 32bit (32bit conflicts with conversations, not xep compliant)
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 |