49505152535455
/** * @param passPhrase */ public DesEncrypter(String passPhrase) { cipher = new DesCipher(passPhrase.getBytes()); }