_mode = mode.toUpperCase(Locale.ENGLISH);
String transformation = getTransformation(algorithm, mode);
if (transformation == null)
throw new QuercusRuntimeException(L.l("'{0}' is an unknown algorithm",
algorithm));
_cipher = Cipher.getInstance(transformation);
}