A Great Update: py-kms_2019-05-15

This commit is contained in:
Matteo ℱan
2019-05-14 22:12:49 +02:00
committed by GitHub
parent 698353f800
commit 660d86d42b
23 changed files with 6589 additions and 991 deletions

View File

@@ -0,0 +1,16 @@
#!/usr/bin/env python3
import struct
from pykms_Base import kmsBase
from pykms_Misc import ErrorCodes
#---------------------------------------------------------------------------------------------------------------------------------------------------------
class kmsRequestUnknown(kmsBase):
def executeRequestLogic(self):
finalResponse = bytearray()
finalResponse.extend(bytearray(struct.pack('<I', 0)))
finalResponse.extend(bytearray(struct.pack('<I', 0)))
finalResponse.extend(bytearray(struct.pack('<I', ErrorCodes['SL_E_VL_KEY_MANAGEMENT_SERVICE_ID_MISMATCH'][0])))
return finalResponse.decode('utf-8').encode('utf-8')