122bc97ce2
This also ensures that the IV is generated with proper randomness.
8 lines
164 B
Java
8 lines
164 B
Java
package eu.siacs.conversations.crypto.axolotl;
|
|
|
|
public class CryptoFailedException extends Exception {
|
|
public CryptoFailedException(Exception e){
|
|
super(e);
|
|
}
|
|
}
|