base.jdbs.cryptography.symmetric
Class DESSymmetricCipher

java.lang.Object
  extended by base.jdbs.cryptography.symmetric.SymmetricCipher
      extended by base.jdbs.cryptography.symmetric.DESSymmetricCipher
All Implemented Interfaces:
ISymmetricCipher

public class DESSymmetricCipher
extends SymmetricCipher


Field Summary
 
Fields inherited from class base.jdbs.cryptography.symmetric.SymmetricCipher
decryptionCipher, encryptionCipher
 
Constructor Summary
DESSymmetricCipher(SymmetricKey passPhrase)
           
 
Method Summary
 void decrypt(java.io.File inputFile, java.io.File outputFile)
          This method offers an entry point for File dencryption for symmetric ciphers.
 void encrypt(java.io.File inputFile, java.io.File outputFile)
          This method offers an entry point for File encryption for symmetric ciphers.
 
Methods inherited from class base.jdbs.cryptography.symmetric.SymmetricCipher
getDecryptionCipher, getEncryptionCipher
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DESSymmetricCipher

public DESSymmetricCipher(SymmetricKey passPhrase)
Method Detail

encrypt

public void encrypt(java.io.File inputFile,
                    java.io.File outputFile)
Description copied from interface: ISymmetricCipher
This method offers an entry point for File encryption for symmetric ciphers.

Parameters:
inputFile - The input File to encrypt.
outputFile - The encryption output File.

decrypt

public void decrypt(java.io.File inputFile,
                    java.io.File outputFile)
Description copied from interface: ISymmetricCipher
This method offers an entry point for File dencryption for symmetric ciphers.

Parameters:
inputFile - The input File to dencrypt.
outputFile - The decryption output File.


Copyright © 2006 SF.net. All Rights Reserved.