d-dyachkov / StringObfuscator

Compile-time string obfuscation (C++14)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

StringObfuscator

Compile-time string obfuscation (C++14)

Requirements

  • O2 (optimization option)

Example

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

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

About

Compile-time string obfuscation (C++14)

License:MIT License


Languages

Language:C++ 100.0%