Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexmingzhang/amzcrypto
A C++ cryptographic library for educational purposes
https://github.com/alexmingzhang/amzcrypto
Last synced: 7 days ago
JSON representation
A C++ cryptographic library for educational purposes
- Host: GitHub
- URL: https://github.com/alexmingzhang/amzcrypto
- Owner: alexmingzhang
- License: gpl-3.0
- Created: 2023-10-05T04:28:26.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-06T04:44:50.000Z (about 1 year ago)
- Last Synced: 2023-10-06T12:57:16.334Z (about 1 year ago)
- Language: C++
- Size: 83 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# amzcrypto
A C++ cryptographic library for educational purposes## :warning: **WARNING**
This library has been developed **solely for educational purposes** and contains known vulnerabilities and possibly undiscovered ones. It is **NOT** secure, has not been audited, and **SHOULD NOT** be used for any real-world cryptographic applications. Misuse will result in severe data breaches and other catastrophic consequences. Always rely on well-established and audited cryptographic libraries for any practical use, such as [OpenSSL's libcrypto](https://github.com/openssl/openssl/tree/master).## Prerequisites
- C++ Compiler supporting C++23 or higher
- CMake version 3.14 or higher
- OpenSSL libraries (for certain features)This repository comes with a Dev Container which provides all prerequisites.
## Compile Tests and Demos
To compile the test and demo programs, run the following commands:git clone https://github.com/alexmingzhang/amzcrypto.git
mkdir build
cd build
cmake ..
makeAll binaries will be in `amzcrypto/bin`