diff options
| author | Ubuntu <zenadmin@zen-server-ubuntu.x1ms1mkm0ykurnlopeoi3ieurb.fx.internal.cloudapp.net> | 2022-02-03 16:55:17 +0000 |
|---|---|---|
| committer | Ubuntu <zenadmin@zen-server-ubuntu.x1ms1mkm0ykurnlopeoi3ieurb.fx.internal.cloudapp.net> | 2022-02-03 16:55:17 +0000 |
| commit | 94a87b059c3096df39a55ef03307cbcebf033450 (patch) | |
| tree | a2ac392985fb5ef7b20d30e1eac240b5aba3619a /zencore/crypto.cpp | |
| parent | Enable encryption on all platforms. (diff) | |
| download | zen-94a87b059c3096df39a55ef03307cbcebf033450.tar.xz zen-94a87b059c3096df39a55ef03307cbcebf033450.zip | |
Enable crypto on Linux.
Diffstat (limited to 'zencore/crypto.cpp')
| -rw-r--r-- | zencore/crypto.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/zencore/crypto.cpp b/zencore/crypto.cpp index 91315aa9a..85b22a730 100644 --- a/zencore/crypto.cpp +++ b/zencore/crypto.cpp @@ -202,7 +202,6 @@ TEST_CASE("crypto.aes") { SUBCASE("basic") { -# if ZEN_PLATFORM_WINDOWS auto Cipher = std::make_unique<Aes>(); std::string_view PlainText = "The quick brown fox jumps over the lazy dog"sv; @@ -231,7 +230,6 @@ TEST_CASE("crypto.aes") CHECK(EncryptedDecryptedText == PlainText); } -# endif } #endif |