conversations-classic/src/main/java/eu/siacs/conversations/crypto/axolotl/CryptoFailedException.java
Andreas Straub 122bc97ce2 Switch payload encryption to AES-GCM
This also ensures that the IV is generated with proper randomness.
2015-07-21 01:17:14 +02:00

8 lines
164 B
Java

package eu.siacs.conversations.crypto.axolotl;
public class CryptoFailedException extends Exception {
public CryptoFailedException(Exception e){
super(e);
}
}