1 package org.sourceforge.vlibrary.util; 2 3 /** 4 * 5 * @version $Revision$ $Date$ 6 */ 7 8 9 public interface Crypto { 10 public String encrypt( String input ) throws Exception; 11 12 public String convert(byte bytes[]) ; 13 }