package javax.crypto.spec;

import java.security.spec.AlgorithmParameterSpec;

public class IvParameterSpec implements AlgorithmParameterSpec
{

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