fix public key shittery
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
90969aeadb
commit
d40b20e753
@ -26,7 +26,7 @@ class NetWrapper:
|
||||
self.authenticationInstance = authenticationInstance
|
||||
|
||||
def ecryptRSAMessage(self, message: str) -> bytes:
|
||||
cipher_rsa = PKCS1_OAEP.new(self.clientPublicKey)
|
||||
cipher_rsa = PKCS1_OAEP.new(self.currentClientPublicKey)
|
||||
encrypted_msg = cipher_rsa.encrypt(message.encode('UTF-8'))
|
||||
return encrypted_msg
|
||||
|
||||
@ -40,7 +40,7 @@ class NetWrapper:
|
||||
def verifyRSAHeaderSignature(self, header: bytes, headersignature: bytes) -> bool:
|
||||
h = SHA512.new(header)
|
||||
try:
|
||||
pkcs1_15.new(self.clientPublicKey).verify(h, headersignature)
|
||||
pkcs1_15.new(self.currentClientPublicKey).verify(h, headersignature)
|
||||
return True
|
||||
except Exception:
|
||||
return False
|
||||
|
Loading…
Reference in New Issue
Block a user