Skip to content

Repository files navigation

FNV-XOR-Mask-Shuffle Symmetric Encryption Algorithm

This is a C++ package that implements the FNV-XOR-Mask-Shuffle symmetric encryption algorithm. This algorithm is a combination of several cryptographic techniques that make it difficult for an attacker to decrypt the data.

Installation

To use this package, you can clone the repository and compile it using a C++ compiler:

git clone https://github.com/NIR3X/Fxms.cpp
cd Fxms.cpp
make

Usage

Here is an example of how to use this package:

#include"Fxms.h"
#include<iostream>
#include<string>
#include<vector>intmain() {
// Generate a random keyauto key = CFxms::GenKey();
// Data to encrypt
std::vector<uint8_t> data = {'H', 'e', 'l', 'l', 'o', ',', '', 'W', 'o', 'r', 'l', 'd', '!'};
// Encrypt the data
std::vector<uint8_t> encrypted = {};
CFxms::Status status = CFxms::Encrypt(key, data, encrypted, CFxms::Mode::OptimizeEncryption);
if (status != CFxms::Status::Success) {
std::cout << "Encryption failed" << std::endl;
return1;
}
// Decrypt the data
std::vector<uint8_t> decrypted = {};
status = CFxms::Decrypt(key, encrypted, decrypted, CFxms::Mode::OptimizeEncryption);
if (status != CFxms::Status::Success) {
std::cout << "Decryption failed" << std::endl;
return1;
}
// Print the decrypted data
std::cout << std::string(decrypted.begin(), decrypted.end()) << std::endl;
return0;
}

License

GNU AGPLv3 Image

This program is Free Software: You can use, study share and improve it at your will. Specifically you can redistribute and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

About

FNV-XOR-Mask-Shuffle Symmetric Encryption Algorithm

Topics

Resources

Stars

2 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages