General code cleanup and style refactor.

This commit is contained in:
2022-11-15 15:58:41 +00:00
parent 42e2251131
commit 8e64a9f10c
4 changed files with 109 additions and 111 deletions

View File

@@ -2,13 +2,10 @@ namespace Aaru.Decryption;
public enum DvdCssKeyClass : byte
{
DvdCssCppmOrCprm = 0,
RewritableSecurityServicesA = 1
DvdCssCppmOrCprm = 0, RewritableSecurityServicesA = 1
}
public enum DvdCssKeyType
{
Key1 = 0,
Key2 = 1,
BusKey = 2
Key1 = 0, Key2 = 1, BusKey = 2
}