Add #32 to common offset

This commit is contained in:
KnugiHK
2023-02-26 15:31:03 +08:00
parent 2d23052758
commit 2ba55719f1
2 changed files with 8 additions and 6 deletions

View File

@@ -42,11 +42,12 @@ def determine_day(last, current):
else: else:
return current return current
CRYPT14_OFFSETS = [ CRYPT14_OFFSETS = (
{"iv": 67, "db": 191}, {"iv": 67, "db": 191},
{"iv": 67, "db": 190}, {"iv": 67, "db": 190},
{"iv": 66, "db": 99} {"iv": 66, "db": 99},
] {"iv": 67, "db": 193}
)
class Crypt(Enum): class Crypt(Enum):

View File

@@ -46,11 +46,12 @@ def determine_day(last, current):
return current return current
CRYPT14_OFFSETS = [ CRYPT14_OFFSETS = (
{"iv": 67, "db": 191}, {"iv": 67, "db": 191},
{"iv": 67, "db": 190}, {"iv": 67, "db": 190},
{"iv": 66, "db": 99} {"iv": 66, "db": 99},
] {"iv": 67, "db": 193}
)
class Crypt(Enum): class Crypt(Enum):