mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2025-09-09 10:19:41 +02:00
Bump "Error Prone" to 2.3.2
and gradle-errorprone-plugin to 0.6.
This commit is contained in:
parent
ec7badfda0
commit
b7ea226c56
65 changed files with 173 additions and 149 deletions
|
@ -40,6 +40,7 @@ import org.jivesoftware.smackx.omemo.trust.OmemoFingerprint;
|
|||
* @param <T_Bundle> Bundle class
|
||||
* @author Paul Schaub
|
||||
*/
|
||||
@SuppressWarnings("InconsistentCapitalization")
|
||||
public abstract class OmemoKeyUtil<T_IdKeyPair, T_IdKey, T_PreKey, T_SigPreKey, T_Sess, T_ECPub, T_Bundle> {
|
||||
private static final Logger LOGGER = Logger.getLogger(OmemoKeyUtil.class.getName());
|
||||
|
||||
|
|
|
@ -172,7 +172,7 @@ public class OmemoMessageBuilder<T_IdKeyPair, T_IdKey, T_PreKey, T_SigPreKey, T_
|
|||
byte[] body;
|
||||
byte[] ciphertext;
|
||||
|
||||
body = (message.getBytes(StringUtils.UTF8));
|
||||
body = message.getBytes(StringUtils.UTF8);
|
||||
ciphertext = cipher.doFinal(body);
|
||||
|
||||
byte[] clearKeyWithAuthTag = new byte[messageKey.length + 16];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue