added files

This commit is contained in:
2026-02-24 13:17:54 +03:00
parent f3656f9d2c
commit cb45b9bb04
9 changed files with 65 additions and 8 deletions

View File

@@ -0,0 +1,15 @@
//
// Created by orange on 24.02.2026.
//
#include "omath/containers/encrypted_variable.hpp"
#include <omath/omath.hpp>
#include <print>
int main()
{
OMATH_DEF_CRYPT_VAR(int, 64) var{5};
var.encrypt();
std::println("{}", var.value());
var.decrypt();
std::println("{}", var.value());
return var.value();
}