mirror of
https://github.com/aaru-dps/Aaru.Decryption.git
synced 2025-12-16 19:24:33 +00:00
14 lines
216 B
C#
14 lines
216 B
C#
namespace Aaru.Decryption;
|
|
|
|
public enum DvdCssKeyClass : byte
|
|
{
|
|
DvdCssCppmOrCprm = 0,
|
|
RewritableSecurityServicesA = 1
|
|
}
|
|
|
|
public enum DvdCssKeyType
|
|
{
|
|
Key1 = 0,
|
|
Key2 = 1,
|
|
BusKey = 2
|
|
} |