com.mindbright.ssh
Class SSHDES

java.lang.Object
  extended bycom.mindbright.ssh.SSHCipher
      extended bycom.mindbright.ssh.SSHDES

public final class SSHDES
extends SSHCipher


Constructor Summary
SSHDES()
           
 
Method Summary
 void decrypt(byte[] src, int srcOff, byte[] dest, int destOff, int len)
           
 void encrypt(byte[] src, int srcOff, byte[] dest, int destOff, int len)
           
 void setKey(byte[] key)
           
 
Methods inherited from class com.mindbright.ssh.SSHCipher
decrypt, encrypt, getInstance, setKey
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SSHDES

public SSHDES()
Method Detail

setKey

public void setKey(byte[] key)
Specified by:
setKey in class SSHCipher

encrypt

public void encrypt(byte[] src,
                    int srcOff,
                    byte[] dest,
                    int destOff,
                    int len)
Specified by:
encrypt in class SSHCipher

decrypt

public void decrypt(byte[] src,
                    int srcOff,
                    byte[] dest,
                    int destOff,
                    int len)
Specified by:
decrypt in class SSHCipher