com.googlecode.gwt.crypto.client.TripleDesCipher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-crypto Show documentation
Show all versions of gwt-crypto Show documentation
A partial port of the Bouncycastle J2ME crypto library with
parts taken from GWTx.
The newest version!
package com.googlecode.gwt.crypto.client;
import com.googlecode.gwt.crypto.bouncycastle.engines.DESedeEngine;
/**
* Main class
*/
public class TripleDesCipher extends AbstractStreamCipher {
public TripleDesCipher() {
super(new DESedeEngine());
}
}