
Security News
New CNA Scorecard Tool Ranks CVE Data Quality Across the Ecosystem
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
easy-aes is an ultra-lightweight, pure-python library for doing AES encryption. It draws heavily on the popular crypto library, simplifying AES encryption and decryption of files to a single function each.
Simple usage follows this pattern:
.. code-block:: python
import easy-aes encrypt_me = "my_transcript.pdf" output_file = easy-aes.encrypt_file(encrypt_me)
output_file is a string with the new file name.
WARNING: IF YOU FORGET YOUR PASSWORD AND DELETE THE ORIGINAL DATA, YOUR FILE WILL NOT BE ABLE TO BE RETRIEVED!
.. code-block:: python
import easy-aes encrypted_file = "my_encrypted_filename.aes" binary_data = easy-aes.decrypt_file(encrypted_file) with open('my_new_file.aaa','wb') as new_file: new_file.write(decrypted_data)
decrypt_file returns a Python object containing the now-decrypted data.
easy-aes works Python 3.3+. To install it, use:
.. code-block:: bash
$ pip install easy-aes
0.1
Released on September 10, 2016
FAQs
An ultra-lightweight library to securely encrypt any file with AES.
We found that easy-aes demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
Research
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.