4950515253545556575859606162636465666768
// hash down the password to a 160bit key SHA1 hasher = new SHA1(); hasher.update(sPassword); hasher.finalize(); // setup the encryptor (use a dummy IV) m_bfish = new BlowfishCBC(hasher.getDigest(), 0); hasher.clear(); };