cipher = this.makePBECipher(STORE_CIPHER, Cipher.DECRYPT_MODE, password, salt, iterationCount);
}
CipherInputStream cIn = new CipherInputStream(dIn, cipher);
DigestInputStream dgIn = new DigestInputStream(cIn, new SHA1Digest());
this.loadStore(dgIn);
Digest dig = dgIn.getDigest();
int digSize = dig.getDigestSize();
byte[] hash = new byte[digSize];
byte[] oldHash = new byte[digSize];
dig.doFinal(hash, 0);