*/
public boolean authenticate(String password) {
StringEncrypter encrypter;
try {
encrypter = new StringEncrypter(StringEncrypter.DES_ENCRYPTION_SCHEME);
return encrypter.decrypt(encryptedPassword).equals(password);
} catch (EncryptionException e) {
throw new AzureusCoreException("Unable to decrypt password", e);
}
}