107108109110111112113114115116117
AlgorithmParameters params; try { params = AlgorithmParameters.getInstance("SEED", BouncyCastleProvider.PROVIDER_NAME); params.init(new IvParameterSpec(iv)); } catch (Exception e) { throw new RuntimeException(e.getMessage()); }