package java.security;

public interface Key
{

 public String getAlgorithm();
 
 public String getFormat();
 
 public byte[] getEncoded();
 
}