1 package org.apache.turbine.services.crypto.provider; 2 3 18 19 import org.apache.turbine.services.crypto.CryptoAlgorithm; 20 21 32 public class ClearCrypt 33 implements CryptoAlgorithm 34 { 35 38 public ClearCrypt() 39 { 40 } 41 42 48 public void setCipher(String cipher) 49 { 50 51 } 52 53 59 public void setSeed(String seed) 60 { 61 62 } 63 64 71 public String encrypt(String value) 72 throws Exception  73 { 74 77 78 return value; 79 } 80 81 } 82 | Popular Tags |