Download the last version for iphoneFast File Encryptor 11.7

broken image
broken image

Licensed under the Apache License, Version 2.0 (the “License”) you may not use this file except in compliance with the License.

broken image

LicenseĬopyright © 2021-2024 Tobias Erbsland and EducateIT GmbH Īccording to the copyright terms specified in the file “COPYRIGHT.md”.

broken image

You find all details about the library, it’s design and file format in the documentation. Install Fast File Encryption using pip: $ pip install fast_file_encryption Documentation copy_encrypted ( original_file, encrypted_file, meta = Installation read_public_key ( Path ( 'public.pem' ))) > encrypted_file = Path ( 'encrypted_file.ffe' ) > encryptor. write_text ( 'Hello world!' ) > encryptor = ffe. save_key_pair ( public_key = Path ( 'public.pem' ), private_key = Path ( 'private.pem' ))Įncrypt a file: > original_file = Path ( 'original_file.txt' ) > original_file. Quick Usage OverviewĬreate a new key pair: > import fast_file_encryption as ffe > from pathlib import Path > ffe. It uses asymmetric RSA keys to encrypt and decrypt the files, in order to store the public key for encryption on the server, with no worries. The Fast File Encryption is an open, very simple and well-designed file encryption solution for medium and large files (up to terabytes).

broken image