![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Cryptography Suite is an advanced cryptographic toolkit for Python, meticulously engineered for applications demanding robust security and seamless integration. It offers a comprehensive set of cryptographic primitives and protocols, empowering developers and organizations to implement state-of-the-art encryption, hashing, key management, digital signatures, and more.
Install the latest stable release from PyPI:
pip install cryptography-suite
Note: Requires Python 3.8 or higher.
Clone the repository and install manually:
git clone https://github.com/Psychevus/cryptography-suite.git
cd cryptography-suite
pip install .
Encrypt and decrypt messages using AES-GCM with password-derived keys.
from cryptography_suite.encryption import aes_encrypt, aes_decrypt
message = "Highly Confidential Information"
password = "ultra_secure_password"
# Encrypt the message
encrypted_message = aes_encrypt(message, password)
print(f"Encrypted: {encrypted_message}")
# Decrypt the message
decrypted_message = aes_decrypt(encrypted_message, password)
print(f"Decrypted: {decrypted_message}")
Generate RSA key pairs and perform encryption/decryption.
from cryptography_suite.asymmetric import generate_rsa_keypair, rsa_encrypt, rsa_decrypt
# Generate RSA key pair
private_key, public_key = generate_rsa_keypair()
message = b"Secure Data Transfer"
# Encrypt the message
encrypted_message = rsa_encrypt(message, public_key)
print(f"Encrypted: {encrypted_message}")
# Decrypt the message
decrypted_message = rsa_decrypt(encrypted_message, private_key)
print(f"Decrypted: {decrypted_message}")
Sign and verify messages using Ed25519.
from cryptography_suite.signatures import generate_ed25519_keypair, sign_message, verify_signature
# Generate key pair
private_key, public_key = generate_ed25519_keypair()
message = b"Authenticate this message"
# Sign the message
signature = sign_message(message, private_key)
# Verify the signature
is_valid = verify_signature(message, signature, public_key)
print(f"Signature valid: {is_valid}")
Split and reconstruct secrets using Shamir's Secret Sharing.
from cryptography_suite.secret_sharing import create_shares, reconstruct_secret
secret = 1234567890
threshold = 3
num_shares = 5
# Create shares
shares = create_shares(secret, threshold, num_shares)
# Reconstruct the secret
selected_shares = shares[:threshold]
recovered_secret = reconstruct_secret(selected_shares)
print(f"Recovered secret: {recovered_secret}")
Ensure the integrity of the suite by running comprehensive tests:
coverage run -m unittest discover
coverage report -m
Our test suite achieves 98% code coverage, guaranteeing reliability and robustness.
cryptography-suite/
├── cryptography_suite/
│ ├── __init__.py
│ ├── asymmetric.py
│ ├── encryption.py
│ ├── hashing.py
│ ├── key_management.py
│ ├── otp.py
│ ├── pake.py
│ ├── secret_sharing.py
│ ├── signatures.py
│ └── utils.py
├── tests/
│ ├── test_asymmetric.py
│ ├── test_encryption.py
│ ├── test_hashing.py
│ ├── test_key_management.py
│ ├── test_otp.py
│ ├── test_pake.py
│ ├── test_secret_sharing.py
│ ├── test_signatures.py
│ └── test_utils.py
├── README.md
├── setup.py
├── LICENSE
└── .github/
└── workflows/
└── python-app.yml
This project is licensed under the MIT License - see the LICENSE file for details.
We welcome contributions from the community. To contribute:
feature/new-algorithm
).main
branch of the original repository.Please ensure that your contributions adhere to the project's coding standards and include relevant tests.
For support or inquiries:
Special thanks to all contributors and users who have helped improve this project through feedback and collaboration.
Empower your applications with secure and reliable cryptographic functions using Cryptography Suite.
FAQs
A comprehensive and secure cryptographic toolkit.
We found that cryptography-suite 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.