blob: ce6d36c495637724e71c8c6140a76e984266bb75 [file] [log] [blame]
package test.pkg;
import java.security.NoSuchAlgorithmException;
import javax.crypto.Cipher;
import javax.crypto.NoSuchPaddingException;
public class CipherGetInstanceTest {
public void test() throws NoSuchPaddingException, NoSuchAlgorithmException {
Cipher des = Cipher.getInstance(Constants.DES);
}
public static class Constants {
public static final String DES = "DES/ECB/NoPadding";
}
}