Add an implementation of the SCRAM-SHA-! SASL mechanism.
This implementation come from the Stroke project http://swift.im/git/stroke
package net.java.otr4j.crypto;
import net.java.otr4j.OtrException;
@SuppressWarnings("serial")
public class OtrCryptoException extends OtrException {
public OtrCryptoException(Exception e) {
super(e);
}
}