Randomise key order during decryption
- may help against timing/radio attacks
This commit is contained in:
parent
6c224447a6
commit
4ee9d05446
|
@ -361,7 +361,7 @@ class objectProcessor(threading.Thread):
|
||||||
# This is not an acknowledgement bound for me. See if it is a message
|
# This is not an acknowledgement bound for me. See if it is a message
|
||||||
# bound for me by trying to decrypt it with my private keys.
|
# bound for me by trying to decrypt it with my private keys.
|
||||||
|
|
||||||
for key, cryptorObject in shared.myECCryptorObjects.items():
|
for key, cryptorObject in sorted(shared.myECCryptorObjects.items(), key=lambda x: random.random()):
|
||||||
try:
|
try:
|
||||||
if initialDecryptionSuccessful: # continue decryption attempts to avoid timing attacks
|
if initialDecryptionSuccessful: # continue decryption attempts to avoid timing attacks
|
||||||
cryptorObject.decrypt(data[readPosition:])
|
cryptorObject.decrypt(data[readPosition:])
|
||||||
|
@ -634,7 +634,7 @@ class objectProcessor(threading.Thread):
|
||||||
"""
|
"""
|
||||||
signedData = data[8:readPosition]
|
signedData = data[8:readPosition]
|
||||||
initialDecryptionSuccessful = False
|
initialDecryptionSuccessful = False
|
||||||
for key, cryptorObject in shared.MyECSubscriptionCryptorObjects.items():
|
for key, cryptorObject in sorted(shared.MyECSubscriptionCryptorObjects.items(), key=lambda x: random.random()):
|
||||||
try:
|
try:
|
||||||
if initialDecryptionSuccessful: # continue decryption attempts to avoid timing attacks
|
if initialDecryptionSuccessful: # continue decryption attempts to avoid timing attacks
|
||||||
cryptorObject.decrypt(data[readPosition:])
|
cryptorObject.decrypt(data[readPosition:])
|
||||||
|
|
Loading…
Reference in New Issue
Block a user