Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
.. image:: https://github.com/varbin/pep272-encryption/workflows/QA/badge.svg :target: https://github.com/varbin/pep272-encryption/actions :alt: Github Actions: QA
.. image:: https://api.codeclimate.com/v1/badges/858bff61374ca5d7fd93/maintainability :target: https://codeclimate.com/github/Varbin/pep272-encryption/maintainability :alt: Maintainability
.. image:: https://api.codeclimate.com/v1/badges/858bff61374ca5d7fd93/test_coverage :target: https://codeclimate.com/github/Varbin/pep272-encryption/test_coverage :alt: Test Coverage
.. image:: https://readthedocs.org/projects/pep272-encryption/badge/?version=latest :target: https://pep272-encryption.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status
Documentation <https://pep272-encryption.readthedocs.io/en/latest/>
_
To prevent reinventing the wheel while creating a
PEP-272 <https://www.python.org/dev/peps/pep-0272/>
_ interface for a new
block cipher encryption, this library aims to create an extensible framework
for new libraries.
Currently following modes of operation are supported:
The PGP mode of operation <https://tools.ietf.org/html/rfc4880#section-13.9>
_
is not supported. It may be added in the future.
In this example encrypt_aes(key, block)
will encrypt one block of AES while
decrypt_aes(key, block)
will decrypt one.
from pep272_encryption import PEP272Cipher, MODE_ECB class AESCipher: ... """ ... PEP-272 cipher class for AES ... """ ... block_size = 16 ... ... def encrypt_block(self, key, block, **kwargs): ... return encrypt_aes(key, block) ...
... def decrypt_block(self, key, block, **kwargs): ... return decrypt_aes(key, block) ...
cipher = AESCipher(b'\00'*16, MODE_ECB) cipher.encrypt(b'\00'*16) b'f\xe9K\xd4\xef\x8a,;\x88L\xfaY\xca4+.'
This project is CC0 <https://creativecommons.org/publicdomain/zero/1.0/>
_ licensed
(= public domain).
.. image:: https://licensebuttons.net/p/zero/1.0/88x31.png :target: https://creativecommons.org/publicdomain/zero/1.0/ :alt: CC0 Public Domain
FAQs
Library for easy creation of PEP-272 cipher classes
We found that pep272-encryption 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.