_currentEncryptionData.setChecksumType(atts.getValue("manifest:checksum-type"));
_currentEncryptionData.setChecksum(atts.getValue("manifest:checksum"));
_currentFileEntry.setEncryptionData(_currentEncryptionData);
}
} else if (localName.equals("algorithm")) {
Algorithm algorithm = new Algorithm();
algorithm.setName(atts.getValue("manifest:algorithm-name"));
algorithm.setInitializationVector(atts.getValue("manifest:initialization-vector"));
if (_currentEncryptionData != null) {
_currentEncryptionData.setAlgorithm(algorithm);
}
} else if (localName.equals("key-derivation")) {
KeyDerivation keyDerivation = new KeyDerivation();