katursis / StringObfuscator

Simple header-only compile-time library for string obfuscation (C++14)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

StringObfuscator

Simple header-only compile-time string encryptor (C++14)

Requirements

  • O2 (optimization option)

Example

#include <iostream>
#include "str_obfuscator.hpp"

int main() {
    std::cout << cryptor::create("Hello, World!").decrypt() << std::endl;

    return 0;
}

About

Simple header-only compile-time library for string obfuscation (C++14)

License:MIT License


Languages

Language:C++ 100.0%