package java.security;

public abstract class Signature
{

 public static Signature getInstance(String string_1) throws NoSuchAlgorithmException
 {
  return null;
 }
 
 public final void initVerify(PublicKey publickey_1) throws InvalidKeyException
 {
 }
 
 public final boolean verify(byte[] bytes_1) throws SignatureException
 {
  return false;
 }
 
 public final void update(byte[] bytes_1, int int_1, int int_2) throws SignatureException
 {
 }
 
}