Digital preservation is the active management of digital objects to ensure they remain accessible, authentic, and readable over technological epochs. Unlike a simple backup, preservation addresses format obsolescence and physical data decay.
PDF/A (ISO 19005) is the industry standard for long-term archiving. PDF/A-3 (released in 2012) allows embedding any other file format within the PDF/A document.
"Bit-rot" is the spontaneous flipping of bits on storage media due to cosmic rays, electromagnetic interference, or hardware failure.
Every preserved artifact must be accompanied by a cryptographic hash (e.g., SHA-256). This acts as a digital fingerprint.
| Algorithm | Strength | Purpose |
|---|---|---|
| MD5 | Broken | Legacy use only; prone to collision attacks. |
| SHA-256 | High | Current industry standard for integrity verification. |
| BLAKE3 | Ultra-Fast | Parallelizable hashing for large-scale archival scrubbing. |
A resilient system does not wait for a user to report a corrupt file. It implements Data Scrubbing:
Never archive data in proprietary binary formats (e.g., old .doc or .psd). Always normalize to open, documented standards like PDF/A, TIFF, or plain text (UTF-8).
While external databases are fast for searching, essential metadata (Author, Date, Provenance) should be embedded inside the preservation file (e.g., XMP metadata in PDF/A) to ensure the file remains self-describing if separated from the database.