package javax.crypto.spec;

import java.security.Key;
import java.security.spec.KeySpec;

public class SecretKeySpec implements KeySpec, Key
{

 public SecretKeySpec(byte[], int, int, String)
 {
 }
 
 public String getAlgorithm()
 {
  return null;
 }
 
 public String getFormat()
 {
  return null;
 }
 
 public byte[] getEncoded()
 {
  return null;
 }
 
}