diff --git a/Enums/Images.cs b/Enums/Images.cs
index b83fae94d..f7a0a91db 100644
--- a/Enums/Images.cs
+++ b/Enums/Images.cs
@@ -34,6 +34,7 @@
//
// ----------------------------------------------------------------------------
// Copyright © 2011-2021 Natalia Portillo
+// Copyright © 2020-2021 Rebecca Wallander
// ****************************************************************************/
using System;
@@ -109,7 +110,11 @@ namespace Aaru.CommonTypes.Enums
/// DVD sector copyright information
DvdCmi = 12,
/// Floppy address mark (contents depend on underlying floppy format)
- FloppyAddressMark = 13
+ FloppyAddressMark = 13,
+ /// DVD sector title key, 5 bytes
+ DvdTitleKey = 14,
+ /// Decrypted DVD sector title key, 5 bytes
+ DvdTitleKeyDecrypted = 15
}
/// Metadata present for each media.
@@ -264,7 +269,9 @@ namespace Aaru.CommonTypes.Enums
/// User TOC, contains fragments, track names, and can be from 1 to 3 sectors of 2336 bytes
MiniDiscUTOC = 71,
/// Not entirely clear kind of TOC that only appears on MD-DATA discs
- MiniDiscDTOC = 72
+ MiniDiscDTOC = 72,
+ /// Decrypted DVD disc key
+ DVD_DiscKey_Decrypted = 73
}
/// Enumeration of media types defined in CICM metadata
diff --git a/Metadata/Resume.cs b/Metadata/Resume.cs
index 379fb34ca..828b0d5dc 100644
--- a/Metadata/Resume.cs
+++ b/Metadata/Resume.cs
@@ -60,6 +60,8 @@ namespace Aaru.CommonTypes.Metadata
public List BadSubchannels;
[XmlArrayItem("Extent")]
public ExtentType[] BlankExtents;
+ [XmlArrayItem("Block")]
+ public List MissingTitleKeys;
[XmlArrayItem("DumpTry")]
public List Tries;