Skip to content

Commit c0e2bc6

Browse files
add semi colon
1 parent 4d2666b commit c0e2bc6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

android/src/main/java/com/pedrouid/crypto/RCTAes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ private static String decrypt(String ciphertext, String hexKey, String hexIv) th
142142
Cipher cipher = Cipher.getInstance(CIPHER_ALGORITHM);
143143
cipher.init(Cipher.DECRYPT_MODE, secretKey, hexIv == null ? emptyIvSpec : new IvParameterSpec(Hex.decode(hexIv)));
144144
byte[] decrypted = cipher.doFinal(Base64.decode(ciphertext, Base64.NO_WRAP));
145-
return Base64.encodeToString(decrypted, Base64.NO_WRAP)
145+
return Base64.encodeToString(decrypted, Base64.NO_WRAP);
146146
}
147147

148148
}

0 commit comments

Comments
 (0)