package javax.crypto.spec;

import java.security.spec.AlgorithmParameterSpec;

public class IvParameterSpec implements AlgorithmParameterSpec
{

 public IvParameterSpec(byte[] bytes_1, int int_1, int int_2)
 {
 }
 
 public byte[] getIV()
 {
  return null;
 }
 
}