https://github.com/abdielsouza/arcencryptor
An encryption library written in C++
https://github.com/abdielsouza/arcencryptor
c cpp cryptography
Last synced: about 2 months ago
JSON representation
An encryption library written in C++
- Host: GitHub
- URL: https://github.com/abdielsouza/arcencryptor
- Owner: abdielsouza
- License: mit
- Created: 2024-11-30T12:38:55.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-12-23T23:55:41.000Z (over 1 year ago)
- Last Synced: 2025-02-02T03:18:35.830Z (over 1 year ago)
- Topics: c, cpp, cryptography
- Language: C++
- Homepage:
- Size: 1.22 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Arc Encryptor Project

## What is Arc Encryptor?
The "Arc" is a new cryptography standard created by myself that can be used to
encrypt files and raw text contents. The algorithm is based on the concept of an
arc mathematical expression where the limits go from -3.14 to 3.14. The Arc Encryptor
uses trigonometric expressions to encode data and a symmetric key to decode it back.
## Tech Stack
- Pure C++
- STL
- CMake
## Some notes about this project
- **this library was not projected to be used on real projects for production (YET!)**
- **this algorithm is still very weak**, so don't expect so much from it.
## How to install
- Clone this git repo
- Go to the root directory
- Run the commands (adapted for linux):
```
mkdir build && cd build
sudo cmake ..
sudo make install
```