de.mud.ssh
Class NONE

java.lang.Object
  |
  +--de.mud.ssh.Cipher
        |
        +--de.mud.ssh.NONE

public final class NONE
extends Cipher


Constructor Summary
NONE()
           
 
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)
           
 void setKey(java.lang.String skey)
           
 
Methods inherited from class de.mud.ssh.Cipher
decrypt, encrypt, getInstance
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NONE

public NONE()
Method Detail

setKey

public void setKey(java.lang.String skey)
Overrides:
setKey in class Cipher

setKey

public void setKey(byte[] key)
Overrides:
setKey in class Cipher

encrypt

public void encrypt(byte[] src,
                    int srcOff,
                    byte[] dest,
                    int destOff,
                    int len)
Overrides:
encrypt in class Cipher

decrypt

public void decrypt(byte[] src,
                    int srcOff,
                    byte[] dest,
                    int destOff,
                    int len)
Overrides:
decrypt in class Cipher