Files
Aaru.Decryption/Enums.cs

11 lines
189 B
C#
Raw Normal View History

2022-03-06 13:29:36 +00:00
namespace Aaru.Decryption;
public enum DvdCssKeyClass : byte
2021-01-13 21:09:13 +01:00
{
DvdCssCppmOrCprm = 0, RewritableSecurityServicesA = 1
2022-03-06 13:29:36 +00:00
}
2021-01-13 21:09:13 +01:00
2022-03-06 13:29:36 +00:00
public enum DvdCssKeyType
{
Key1 = 0, Key2 = 1, BusKey = 2
2021-01-13 21:09:13 +01:00
}