mirror of
https://github.com/espressif/esp-idf.git
synced 2025-09-01 06:27:29 +00:00
ci: all jobs use python3 by default
This commit is contained in:
@@ -167,7 +167,7 @@ class Security1(Security):
|
||||
return -1
|
||||
|
||||
def encrypt_data(self, data):
|
||||
return self.cipher.update(data)
|
||||
return self.cipher.update(tobytes(data))
|
||||
|
||||
def decrypt_data(self, data):
|
||||
return self.cipher.update(data)
|
||||
return self.cipher.update(tobytes(data))
|
||||
|
Reference in New Issue
Block a user