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