Horje
pyAesCrypt Code Example
pyAesCrypt
import pyAesCrypt
# encryption/decryption buffer size - 64K
bufferSize = 64 * 1024
password = "foopassword"
# encrypt
pyAesCrypt.encryptFile("data.txt", "data.txt.aes", password, bufferSize)
# decrypt
pyAesCrypt.decryptFile("data.txt.aes", "dataout.txt", password, bufferSize)
Source: pypi.org




Python

Related
function continuity python Code Example function continuity python Code Example
mechanize python #3 Code Example mechanize python #3 Code Example
python autotrader web Code Example python autotrader web Code Example
access matrix value opencv Code Example access matrix value opencv Code Example
python string color format Code Example python string color format Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7