| java.lang.Object jcifs.util.DES
DES | public class DES (Code) | | This code is derived from the above source
JCIFS API
Norbert Hranitzky
and modified again by Michael B. Allen
|
Constructor Summary | |
public | DES() | public | DES(byte[] key) |
Method Summary | |
public void | decrypt(byte[] cipherText, byte[] clearText) | public byte[] | decrypt(byte[] cipherText) | public void | encrypt(byte[] clearText, byte[] cipherText) | public byte[] | encrypt(byte[] clearText) | public static void | makeSMBKey(byte[] key7, byte[] key8) | public void | setKey(byte[] key) | public static void | spreadIntsToBytes(int[] inInts, int inOff, byte[] outBytes, int outOff, int intLen) | public static void | squashBytesToInts(byte[] inBytes, int inOff, int[] outInts, int outOff, int intLen) |
DES | public DES(byte[] key)(Code) | | |
decrypt | public void decrypt(byte[] cipherText, byte[] clearText)(Code) | | |
decrypt | public byte[] decrypt(byte[] cipherText)(Code) | | decrypts an array where the length must be a multiple of 8
|
encrypt | public void encrypt(byte[] clearText, byte[] cipherText)(Code) | | |
encrypt | public byte[] encrypt(byte[] clearText)(Code) | | encrypts an array where the length must be a multiple of 8
|
makeSMBKey | public static void makeSMBKey(byte[] key7, byte[] key8)(Code) | | |
setKey | public void setKey(byte[] key)(Code) | | |
spreadIntsToBytes | public static void spreadIntsToBytes(int[] inInts, int inOff, byte[] outBytes, int outOff, int intLen)(Code) | | |
squashBytesToInts | public static void squashBytesToInts(byte[] inBytes, int inOff, int[] outInts, int outOff, int intLen)(Code) | | |
|
|