com.jcraft.jsch
Interface SignatureDSA

All Known Implementing Classes:
SignatureDSA

public interface SignatureDSA


Method Summary
 void init()
           
 void setPrvKey(byte[] x, byte[] p, byte[] q, byte[] g)
           
 void setPubKey(byte[] y, byte[] p, byte[] q, byte[] g)
           
 byte[] sign()
           
 void update(byte[] H)
           
 boolean verify(byte[] sig)
           
 

Method Detail

init

public void init()
          throws java.lang.Exception
Throws:
java.lang.Exception

setPubKey

public void setPubKey(byte[] y,
                      byte[] p,
                      byte[] q,
                      byte[] g)
               throws java.lang.Exception
Throws:
java.lang.Exception

setPrvKey

public void setPrvKey(byte[] x,
                      byte[] p,
                      byte[] q,
                      byte[] g)
               throws java.lang.Exception
Throws:
java.lang.Exception

update

public void update(byte[] H)
            throws java.lang.Exception
Throws:
java.lang.Exception

verify

public boolean verify(byte[] sig)
               throws java.lang.Exception
Throws:
java.lang.Exception

sign

public byte[] sign()
            throws java.lang.Exception
Throws:
java.lang.Exception